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.
17 lines
265 B
17 lines
265 B
4 months ago
|
#version 450
|
||
|
|
||
|
#extension GL_EXT_buffer_reference : enable
|
||
|
|
||
|
layout(buffer_reference, std140) buffer t3 {
|
||
|
int h;
|
||
|
};
|
||
|
|
||
|
layout(set = 1, binding = 2, std140) uniform t4 {
|
||
|
layout(offset = 0) int j;
|
||
|
t3 k;
|
||
|
} x;
|
||
|
|
||
|
void main() {
|
||
|
x.k.h = x.j;
|
||
|
}
|