mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-11-23 08:11:29 +11:00
13 lines
171 B
C++
13 lines
171 B
C++
layout(push_constant, std140) uniform UBO
|
|
{
|
|
vec4 SourceSize;
|
|
float OUT_GAMMA;
|
|
float BOOST;
|
|
} global;
|
|
|
|
layout(binding = 0, std140) uniform UBO1
|
|
{
|
|
mat4 MVP;
|
|
};
|
|
|