You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
336 B
13 lines
336 B
4 months ago
|
#version 450
|
||
|
|
||
|
//make sure the builtins don't exist if the extension isn't enabled.
|
||
|
//#extension GL_EXT_fragment_invocation_density : require
|
||
|
|
||
|
layout (location = 0) out vec2 FragSize;
|
||
|
layout (location = 2) out int FragInvocationCount;
|
||
|
|
||
|
void main () {
|
||
|
FragSize = gl_FragSizeEXT;
|
||
|
FragInvocationCount = gl_FragInvocationCountEXT;
|
||
|
}
|