mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-05 19:55:37 +00:00
Bug: tint:1526 Change-Id: I301a9ba6e94b162a1ffb436be3e3212b723b7401 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/106682 Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
14 lines
303 B
HLSL
14 lines
303 B
HLSL
Texture2DArray<float4> arg_0 : register(t0, space1);
|
|
SamplerState arg_1 : register(s1, space1);
|
|
|
|
void textureSample_d6b281() {
|
|
float2 arg_2 = (0.0f).xx;
|
|
uint arg_3 = 1u;
|
|
float4 res = arg_0.Sample(arg_1, float3(arg_2, float(arg_3)));
|
|
}
|
|
|
|
void fragment_main() {
|
|
textureSample_d6b281();
|
|
return;
|
|
}
|