10 lines
129 B
GLSL
10 lines
129 B
GLSL
|
#version 450
|
||
|
|
||
|
layout(constant_id = 3) const int a = 2;
|
||
|
|
||
|
layout(push_constant) uniform pc { float f; };
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
}
|