mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-14 09:06:11 +00:00
UniqueIdentifier() will generate a program-global unique symbol. MslGeneratorImplTest.AttemptTintPadSymbolCollision tests for collisions with the field names. TextGeneratorTest.UniqueIdentifier_ConflictWithExisting tests for collisions between general symbols. Fixed: tint:654 Change-Id: If2ba75d04ff0e2a9975e878596ac114d51adcd46 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/56580 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Sarah Mashayekhi <sarahmashay@google.com> Reviewed-by: James Price <jrprice@google.com> Commit-Queue: James Price <jrprice@google.com> Auto-Submit: Ben Clayton <bclayton@google.com>
14 lines
265 B
Plaintext
14 lines
265 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
struct Light {
|
|
/* 0x0000 */ packed_float3 position;
|
|
/* 0x000c */ int8_t tint_pad[4];
|
|
/* 0x0010 */ packed_float3 colour;
|
|
/* 0x001c */ int8_t tint_pad_1[4];
|
|
};
|
|
struct Lights {
|
|
/* 0x0000 */ Light light[1];
|
|
};
|
|
|