spv.arbPostDepthCoverage_Error.frag 339 B

12345678910111213
  1. #version 310 es
  2. #extension GL_ARB_post_depth_coverage : enable
  3. precision highp float;
  4. layout(post_depth_coverage, location = 0) in float a; // should fail since post_depth_coverage may only
  5. // be declared on in only (not with variable declarations)
  6. void main () {
  7. }