projects
/
platform
/
upstream
/
glslang.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #2913 from greg-lunarg/i2905
[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
}