mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-10 04:20:06 +00:00
41992e432c
Signed-off-by: ZhiqianXia <xzq0528@outlook.com>
12 lines
227 B
GLSL
12 lines
227 B
GLSL
#version 300 es
|
|
precision mediump float;
|
|
in highp vec4 dEQP_Position;
|
|
|
|
uniform mediump sampler2DArrayShadow s;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(textureOffset(s, vec4(0), ivec2(0)));
|
|
gl_Position = dEQP_Position;
|
|
}
|