Ben Clayton 7103f51603 writer/msl: Fix swizzling on packed vectors
Metal 1.x does not support swizzling on packed_vec types.
Use array-index for single element selection (permitted on LHS and RHS of assignment)
Cast the packed_vec to a vec for multiple element swizzles (not permitted as the LHS of an assignment).

Fixed: tint:1249
Change-Id: I70cbb0c22a935b06b3905d24484bdc2edfb95fc2
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/67060
Commit-Queue: Ben Clayton <bclayton@google.com>
Kokoro: Ben Clayton <bclayton@google.com>
Reviewed-by: James Price <jrprice@google.com>
2021-10-20 16:12:33 +00:00

16 lines
218 B
Plaintext

#include <metal_stdlib>
using namespace metal;
struct S {
/* 0x0000 */ packed_int3 v;
/* 0x000c */ int8_t tint_pad[4];
};
void f(device S& U) {
U.v = int3(1, 2, 3);
U.v[0] = 1;
U.v[1] = 2;
U.v[2] = 3;
}