* Update SPIRV libraries - Update `spirv-cross` - Update `spirv-tools` - Update `glslang` `spirv-tools` contains a fix for an issue we reported (unnecessary promotions to highp in certain expressions). * Add SPIRV-Tools dependency to matinfo
13 lines
339 B
GLSL
13 lines
339 B
GLSL
#version 310 es
|
|
|
|
#extension GL_ARB_post_depth_coverage : enable
|
|
|
|
precision highp float;
|
|
|
|
layout(post_depth_coverage, location = 0) in float a; // should fail since post_depth_coverage may only
|
|
// be declared on in only (not with variable declarations)
|
|
|
|
void main () {
|
|
|
|
}
|