23 lines
347 B
GLSL
23 lines
347 B
GLSL
intrinsics/ignore/runtime_array.wgsl:9:5 warning: use of deprecated intrinsic
|
|
ignore(s.arr);
|
|
^^^^^^
|
|
|
|
#version 310 es
|
|
precision mediump float;
|
|
|
|
|
|
layout (binding = 0) buffer S_1 {
|
|
int arr[];
|
|
} s;
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
void tint_symbol() {
|
|
s.arr;
|
|
return;
|
|
}
|
|
void main() {
|
|
tint_symbol();
|
|
}
|
|
|
|
|