First Commit
This commit is contained in:
10
externals/glslang/Test/spv.dead-after-return.vert
vendored
Normal file
10
externals/glslang/Test/spv.dead-after-return.vert
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
#version 450
|
||||
|
||||
layout(location =0 ) in int c;
|
||||
layout(location =0 ) out int o;
|
||||
|
||||
void main() {
|
||||
o = 1;
|
||||
return;
|
||||
o = 3;
|
||||
}
|
||||
Reference in New Issue
Block a user