mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-13 08:36:08 +00:00
Fixed: tint:1757 Change-Id: Iacce6ab0f08f89abbe5831e6f2285a0c964e74d7 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/110100 Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Auto-Submit: Ben Clayton <bclayton@google.com>
26 lines
444 B
GLSL
26 lines
444 B
GLSL
#version 310 es
|
|
|
|
struct frexp_result {
|
|
float fract;
|
|
int exp;
|
|
};
|
|
|
|
frexp_result tint_frexp(float param_0) {
|
|
frexp_result result;
|
|
result.fract = frexp(param_0, result.exp);
|
|
return result;
|
|
}
|
|
|
|
|
|
void tint_symbol() {
|
|
frexp_result res = tint_frexp(1.230000019f);
|
|
int tint_symbol_1 = res.exp;
|
|
float tint_symbol_2 = res.fract;
|
|
}
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
void main() {
|
|
tint_symbol();
|
|
return;
|
|
}
|