mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 14:13:39 +00:00
Also move: test/fxc_bugs/vector_assignment_in_loop to test/bug/fxc/vector_assignment_in_loop Change-Id: I7bbfc476fdb7a3296025609625e322fed8d16285 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/59444 Auto-Submit: Ben Clayton <bclayton@google.com> Commit-Queue: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: James Price <jrprice@google.com>
13 lines
306 B
HLSL
13 lines
306 B
HLSL
cbuffer cbuffer_ubo : register(b0, space0) {
|
|
uint4 ubo[5];
|
|
};
|
|
|
|
RWByteAddressBuffer result : register(u2, space0);
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void f() {
|
|
const uint scalar_offset = ((16u * uint(asint(ubo[4].x)))) / 4;
|
|
result.Store(0u, asuint(asint(ubo[scalar_offset / 4][scalar_offset % 4])));
|
|
return;
|
|
}
|