aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/SkSLParser.h
diff options
context:
space:
mode:
authorGravatar ethannicholas <ethannicholas@google.com>2016-09-30 06:23:24 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-09-30 06:23:25 -0700
commitf008b0a59f45c0d4bea3e66faf3b01805009ec89 (patch)
tree57b3cfb21b1e83552935ceb606b9102febb64333 /src/sksl/SkSLParser.h
parented38772630744edd1999f4ef8ea96fe0c7c45f6d (diff)
Turned on SkSL->GLSL compiler
Diffstat (limited to 'src/sksl/SkSLParser.h')
-rw-r--r--src/sksl/SkSLParser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sksl/SkSLParser.h b/src/sksl/SkSLParser.h
index 75f304bc8c..d1ae0d0e9f 100644
--- a/src/sksl/SkSLParser.h
+++ b/src/sksl/SkSLParser.h
@@ -35,6 +35,7 @@ struct ASTInterfaceBlock;
struct ASTLayout;
struct ASTModifiers;
struct ASTParameter;
+struct ASTPrecision;
struct ASTReturnStatement;
struct ASTStatement;
struct ASTSuffix;
@@ -100,7 +101,7 @@ private:
// don't need to call any of these outside of the parser. The function declarations in the .cpp
// file have comments describing the grammar rules.
- void precision();
+ std::unique_ptr<ASTDeclaration> precision();
std::unique_ptr<ASTDeclaration> directive();