mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-05 11:45:54 +00:00
This CL adds const-eval for pack and unpack of 2x16 float values. Bug: tint:1581 Change-Id: I59a1925148124e628c3771ca96d309fad045f27d Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/109280 Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
31 lines
559 B
HLSL
31 lines
559 B
HLSL
void unpack2x16float_32a5cf() {
|
|
float2 res = float2(5.96046448e-08f, 0.0f);
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value : SV_Position;
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
unpack2x16float_32a5cf();
|
|
return (0.0f).xxxx;
|
|
}
|
|
|
|
tint_symbol vertex_main() {
|
|
const float4 inner_result = vertex_main_inner();
|
|
tint_symbol wrapper_result = (tint_symbol)0;
|
|
wrapper_result.value = inner_result;
|
|
return wrapper_result;
|
|
}
|
|
|
|
void fragment_main() {
|
|
unpack2x16float_32a5cf();
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main() {
|
|
unpack2x16float_32a5cf();
|
|
return;
|
|
}
|