Files
filament/third_party/glslang/Test/spv.bufferhandleRuntimeArray.frag
Mathias Agopian d7b10bdd3b update glslang, spirv-tools and spirv-opt to their latest version (#9845)
* update spirv-cross to a0fba56

* update spirv-tools to v2026.1

* update spirv-headers to 04f10f6

* update glslang to 16.2.0
2026-03-27 16:35:56 -07:00

15 lines
244 B
GLSL

#version 460
#extension GL_EXT_buffer_reference : require
layout(buffer_reference) buffer A {
uint x;
};
layout(buffer_reference) buffer B { A a[]; };
layout(push_constant) uniform PushConstants {
B b;
uint c;
};
void main() {}