aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ast
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2017-09-26 14:23:59 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-26 19:17:46 +0000
commitbed683addbd2f31da05dc19f24f3257bee30ee8c (patch)
tree9aca6c54e84244393aced6d32fa9f855145445b5 /src/sksl/ast
parente9242ca695a390445690cb32f67eedef85f54099 (diff)
switched gl_Position and gl_PointSize to sk_*
Bug: skia: Change-Id: Ie7508991aa975c1400bac23ae49d81041a313968 Reviewed-on: https://skia-review.googlesource.com/51320 Reviewed-by: Greg Daniel <egdaniel@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'src/sksl/ast')
-rw-r--r--src/sksl/ast/SkSLASTInterfaceBlock.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sksl/ast/SkSLASTInterfaceBlock.h b/src/sksl/ast/SkSLASTInterfaceBlock.h
index d445ae0398..17f180a727 100644
--- a/src/sksl/ast/SkSLASTInterfaceBlock.h
+++ b/src/sksl/ast/SkSLASTInterfaceBlock.h
@@ -16,9 +16,9 @@ namespace SkSL {
/**
* An interface block, as in:
*
- * out gl_PerVertex {
- * layout(builtin=0) float4 gl_Position;
- * layout(builtin=1) float gl_PointSize;
+ * out sk_PerVertex {
+ * layout(builtin=0) float4 sk_Position;
+ * layout(builtin=1) float sk_PointSize;
* };
*/
struct ASTInterfaceBlock : public ASTDeclaration {