dawn-cmake/test/tint/builtins/gen/var/textureStore/a165b8.wgsl.expected.glsl
Ben Clayton d03dceebf3 tint: Add bgra8unorm storage texture support
Polyfill this for the SPIR-V, HLSL and GLSL backends by replacing bgra8unorm with rgba8unorm, and swizzling.

Bug: tint:1804
Change-Id: I36638202840d7313001dff6c5b60dcb948988c34
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/117204
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Kokoro: Kokoro <noreply+kokoro@google.com>
2023-01-18 19:42:03 +00:00

59 lines
1.1 KiB
GLSL

#version 310 es
layout(rgba8) uniform highp writeonly image2D arg_0;
void textureStore_a165b8() {
uvec2 arg_1 = uvec2(1u);
vec4 arg_2 = vec4(1.0f);
imageStore(arg_0, ivec2(arg_1), arg_2.bgra);
}
vec4 vertex_main() {
textureStore_a165b8();
return vec4(0.0f);
}
void main() {
gl_PointSize = 1.0;
vec4 inner_result = vertex_main();
gl_Position = inner_result;
gl_Position.y = -(gl_Position.y);
gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
return;
}
#version 310 es
precision mediump float;
layout(rgba8) uniform highp writeonly image2D arg_0;
void textureStore_a165b8() {
uvec2 arg_1 = uvec2(1u);
vec4 arg_2 = vec4(1.0f);
imageStore(arg_0, ivec2(arg_1), arg_2.bgra);
}
void fragment_main() {
textureStore_a165b8();
}
void main() {
fragment_main();
return;
}
#version 310 es
layout(rgba8) uniform highp writeonly image2D arg_0;
void textureStore_a165b8() {
uvec2 arg_1 = uvec2(1u);
vec4 arg_2 = vec4(1.0f);
imageStore(arg_0, ivec2(arg_1), arg_2.bgra);
}
void compute_main() {
textureStore_a165b8();
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
compute_main();
return;
}