aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2014-10-23 15:16:07 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2014-10-31 15:29:18 -0600
commit85089f4a23b5ebb796d1b0a73534328cc4faf446 (patch)
treecd6ec6b9fa0b01823cde06b408704652a1c5ba3a
parent8750f6b948ee6bbc3b1c169fa60e337355f5e2bd (diff)
downloadusermoji-85089f4a23b5ebb796d1b0a73534328cc4faf446.tar.xz
demo: tri - only need version 130 for this shader
-rw-r--r--demos/tri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/tri.c b/demos/tri.c
index a7ab7432..5474fe37 100644
--- a/demos/tri.c
+++ b/demos/tri.c
@@ -554,7 +554,7 @@ static XGL_SHADER demo_prepare_vs(struct demo *demo)
static XGL_SHADER demo_prepare_fs(struct demo *demo)
{
static const char *fragShaderText =
- "#version 430\n"
+ "#version 130\n"
"void main() {\n"
" gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);\n"
"}\n";