mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 13:20:30 +00:00
13 lines
149 B
Plaintext
13 lines
149 B
Plaintext
#version 450
|
|
|
|
layout(set = 0, binding = 0) buffer SSBO
|
|
{
|
|
layout(offset = 8) uint foo;
|
|
layout(offset = 4) uint bar;
|
|
};
|
|
|
|
void main()
|
|
{
|
|
bar = foo;
|
|
}
|