mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
c120452754
Added support for both extension GL_ARB_post_depth_coverage and GL_EXT_post_depth_coverage.
10 lines
157 B
GLSL
10 lines
157 B
GLSL
#version 310 es
|
|
|
|
#extension GL_EXT_post_depth_coverage : enable
|
|
|
|
layout(post_depth_coverage) in;
|
|
layout(early_fragment_tests) in;
|
|
|
|
void main () {
|
|
}
|