Remove VKTODO comments - in/out blocks aren't important

This commit is contained in:
baldurk
2016-02-07 18:46:41 +01:00
parent 5c309d9d34
commit 529119a65b
4 changed files with 0 additions and 36 deletions
-9
View File
@@ -24,15 +24,6 @@
#version 420 core
// VKTODOHIGH LunarG sample driver doesn't support in/out blocks yet it seems
/*
in v2f
{
vec4 secondary;
vec4 norm;
} IN;
*/
layout (location = 0) in vec4 INsecondary;
layout (location = 1) in vec4 INnorm;
-9
View File
@@ -44,15 +44,6 @@ out gl_PerVertex
float gl_ClipDistance[];
};
// VKTODOHIGH LunarG sample driver doesn't support in/out blocks yet it seems
/*
out v2f
{
vec4 secondary;
vec4 norm;
} OUT;
*/
layout (location = 0) out vec4 OUTsecondary;
layout (location = 1) out vec4 OUTnorm;
-9
View File
@@ -27,15 +27,6 @@
layout (binding = 3) uniform sampler2D tex0;
layout (location = 0) out vec4 color_out;
// VKTODOHIGH LunarG sample driver doesn't support in/out blocks yet it seems
/*
in v2f
{
vec4 tex;
vec2 glyphuv;
} IN;
*/
layout (location = 0) in vec4 INtex;
layout (location = 1) in vec2 INglyphuv;
-9
View File
@@ -57,15 +57,6 @@ out gl_PerVertex
float gl_ClipDistance[];
};
// VKTODOHIGH LunarG sample driver doesn't support in/out blocks yet it seems
/*
out v2f
{
vec4 tex;
vec2 glyphuv;
} OUT;
*/
layout (location = 0) out vec4 OUTtex;
layout (location = 1) out vec2 OUTglyphuv;