mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-03 10:45:36 +00:00
These were not correctly handled, causing multiple writer issues. Updated test stats: 3248 tests run, 2693 tests pass, 555 tests skipped, 0 tests failed Fixed: tint:757 Change-Id: If92e9c2ceefe986c92ca47d23c8d6b64b155ca49 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/53081 Auto-Submit: Ben Clayton <bclayton@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: David Neto <dneto@google.com>
13 lines
291 B
HLSL
13 lines
291 B
HLSL
Texture2DArray arg_0 : register(t0, space1);
|
|
SamplerComparisonState arg_1 : register(s1, space1);
|
|
|
|
void textureSampleCompare_dd431d() {
|
|
float res = arg_0.SampleCmpLevelZero(arg_1, float3(0.0f, 0.0f, float(1)), 1.0f);
|
|
}
|
|
|
|
void fragment_main() {
|
|
textureSampleCompare_dd431d();
|
|
return;
|
|
}
|
|
|