diff options
Diffstat (limited to 'tests/glsl/sascha-willems/texturearray')
| -rw-r--r-- | tests/glsl/sascha-willems/texturearray/instancing.frag | 16 | ||||
| -rw-r--r-- | tests/glsl/sascha-willems/texturearray/instancing.vert | 30 |
2 files changed, 0 insertions, 46 deletions
diff --git a/tests/glsl/sascha-willems/texturearray/instancing.frag b/tests/glsl/sascha-willems/texturearray/instancing.frag deleted file mode 100644 index b0e293e34..000000000 --- a/tests/glsl/sascha-willems/texturearray/instancing.frag +++ /dev/null @@ -1,16 +0,0 @@ -//TEST:COMPARE_GLSL: -#version 450 - -#extension GL_ARB_separate_shader_objects : enable -#extension GL_ARB_shading_language_420pack : enable - -layout (binding = 1) uniform sampler2DArray samplerArray; - -layout (location = 0) in vec3 inUV; - -layout (location = 0) out vec4 outFragColor; - -void main() -{ - outFragColor = texture(samplerArray, inUV); -}
\ No newline at end of file diff --git a/tests/glsl/sascha-willems/texturearray/instancing.vert b/tests/glsl/sascha-willems/texturearray/instancing.vert deleted file mode 100644 index ad738a59b..000000000 --- a/tests/glsl/sascha-willems/texturearray/instancing.vert +++ /dev/null @@ -1,30 +0,0 @@ -//TEST:COMPARE_GLSL: -#version 450 - -#extension GL_ARB_separate_shader_objects : enable -#extension GL_ARB_shading_language_420pack : enable - -layout (location = 0) in vec4 inPos; -layout (location = 1) in vec2 inUV; - -struct Instance -{ - mat4 model; - vec4 arrayIndex; -}; - -layout (binding = 0) uniform UBO -{ - mat4 projection; - mat4 view; - Instance instance[8]; -} ubo; - -layout (location = 0) out vec3 outUV; - -void main() -{ - outUV = vec3(inUV, ubo.instance[gl_InstanceIndex].arrayIndex.x); - mat4 modelView = ubo.view * ubo.instance[gl_InstanceIndex].model; - gl_Position = ubo.projection * modelView * inPos; -} |
