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.
|
#version 460 core
|
|
|
|
layout(local_size_x=64) in;
|
|
|
|
struct sA {
|
|
int x, y;
|
|
};
|
|
|
|
struct sB {
|
|
sA a;
|
|
};
|
|
|
|
layout(binding=0,set=0) uniform ubo {
|
|
sB b;
|
|
};
|
|
|
|
struct sC {
|
|
sA state;
|
|
} c = {
|
|
b.a,
|
|
};
|
|
|
|
void main()
|
|
{
|
|
}
|