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.
|
#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 () {
|
|
|
|
}
|