Unified GLSL version across shaders in all tutorials.

This commit is contained in:
plapins
2016-06-24 09:36:28 +02:00
parent 85192863b1
commit de3f1b1b99
15 changed files with 15 additions and 15 deletions

Binary file not shown.

View File

@@ -1,5 +1,5 @@
Tutorial03/Data03/shader.frag
Warning, version 400 is not yet complete; most version-specific features are present, but some are missing.
Warning, version 450 is not yet complete; most version-specific features are present, but some are missing.
Linked fragment stage:
@@ -14,7 +14,7 @@ Linked fragment stage:
MemoryModel Logical GLSL450
EntryPoint Fragment 4 "main" 9
ExecutionMode 4 OriginLowerLeft
Source GLSL 400
Source GLSL 450
Name 4 "main"
Name 9 "out_Color"
Decorate 9(out_Color) Location 0

View File

@@ -8,7 +8,7 @@
// Intel does not assume any responsibility for any errors which may appear in this software
// nor any responsibility to update it.
#version 400
#version 450
layout(location = 0) out vec4 out_Color;