slang-shaders/crt/common.inc

13 lines
171 B
PHP
Raw Normal View History

2016-08-02 13:24:03 +02:00
layout(push_constant, std140) uniform UBO
2016-03-25 17:34:21 +01:00
{
vec4 SourceSize;
float OUT_GAMMA;
float BOOST;
2016-03-25 17:34:21 +01:00
} global;
2016-08-02 13:24:03 +02:00
layout(binding = 0, std140) uniform UBO1
{
mat4 MVP;
};