EndStreamPrimitive not supported when there is #extension GL_ARB_gpu_shader5
[platform/upstream/glslang.git] / Test / spv.fragmentDensity-es.frag
1 #version 310 es
2
3 #extension GL_EXT_fragment_invocation_density : require
4
5 layout (location = 0) out highp ivec2 FragSize;
6 layout (location = 2) out highp int FragInvocationCount;
7
8 void main () {
9     FragSize = gl_FragSizeEXT;
10     FragInvocationCount = gl_FragInvocationCountEXT;
11 }