15 lines
172 B
Plaintext
15 lines
172 B
Plaintext
|
#version 450
|
||
|
|
||
|
layout(push_constant, std140) uniform UBO
|
||
|
{
|
||
|
float ubo[4];
|
||
|
} _14;
|
||
|
|
||
|
layout(location = 0) out float FragColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = _14.ubo[1];
|
||
|
}
|
||
|
|