aboutsummaryrefslogtreecommitdiff
path: root/src/format_parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/format_parser.h')
-rw-r--r--src/format_parser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/format_parser.h b/src/format_parser.h
index a57eb44..7257bf1 100644
--- a/src/format_parser.h
+++ b/src/format_parser.h
@@ -26,6 +26,8 @@ namespace amber {
/// Parses a Vulkan image string into a format object.
class FormatParser {
public:
+ static FormatType NameToType(const std::string& data);
+
FormatParser();
~FormatParser();
@@ -34,7 +36,6 @@ class FormatParser {
private:
std::unique_ptr<Format> ParseGlslFormat(const std::string& fmt);
void ProcessChunk(Format*, const std::string&);
- FormatType NameToType(const std::string& data);
void AddPiece(FormatComponentType type, uint8_t bits);
void FlushPieces(Format* fmt, FormatMode mode);