blob: c63ba55ef1a1b82902256a138d870aab6e675fb9 [file] [log] [blame]
vk-gl-cts/spirv_assembly/instruction/compute/signed_op/glsl_uint_sabs/0-opt.wgsl:1:15 warning: use of deprecated language feature: the @stride attribute is deprecated; use a larger type if necessary
type RTArr = @stride(4) array<u32>;
^^^^^^
#version 310 es
uvec3 x_3 = uvec3(0u, 0u, 0u);
layout(binding = 0, std430) buffer S_1 {
uint field0[];
} x_6;
layout(binding = 1, std430) buffer S_2 {
uint field0[];
} x_7;
void main_1() {
uint x_21 = x_3.x;
uint x_23 = x_6.field0[x_21];
x_7.field0[x_21] = uint(abs(int(x_23)));
return;
}
void tint_symbol(uvec3 x_3_param) {
x_3 = x_3_param;
main_1();
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
tint_symbol(gl_GlobalInvocationID);
return;
}