mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-01 12:11:34 +00:00
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>
9 lines
230 B
WebGPU Shading Language
9 lines
230 B
WebGPU Shading Language
@group(0) @binding(0) var tex: texture_storage_2d<bgra8unorm, write>;
|
|
|
|
@vertex
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
|
let value = vec4(1f, 2f, 3f, 4f);
|
|
textureStore(tex, vec2(9, 8), value);
|
|
return vec4<f32>();
|
|
}
|