dawn-cmake/test/tint/ptr_ref/store/param/ptr.spvasm.expected.glsl

24 lines
304 B
Plaintext
Raw Normal View History

#version 310 es
void func(int value, inout int pointer) {
pointer = value;
return;
}
void main_1() {
int i = 0;
i = 123;
func(123, i);
return;
}
void tint_symbol() {
main_1();
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
tint_symbol();
return;
}