You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
332 B
20 lines
332 B
#version 440 core
|
|
|
|
layout(binding = 0, std140) uniform ubo_block {
|
|
float unused_uniform;
|
|
float shared_uniform;
|
|
float vsonly_uniform;
|
|
float fsonly_uniform;
|
|
} ubo;
|
|
|
|
in float vertin;
|
|
|
|
out float vertout;
|
|
|
|
void main()
|
|
{
|
|
vertout = vertin;
|
|
vertout += ubo.shared_uniform;
|
|
vertout += ubo.vsonly_uniform;
|
|
}
|