diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
commit | 086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch) | |
tree | a4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /third_party/rust/glslopt/glsl-optimizer/src | |
parent | Adding debian version 124.0.1-1. (diff) | |
download | firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/glslopt/glsl-optimizer/src')
3 files changed, 3 insertions, 5 deletions
diff --git a/third_party/rust/glslopt/glsl-optimizer/src/compiler/glsl/lower_instructions.cpp b/third_party/rust/glslopt/glsl-optimizer/src/compiler/glsl/lower_instructions.cpp index c549d16d2a..3bf6959e7f 100644 --- a/third_party/rust/glslopt/glsl-optimizer/src/compiler/glsl/lower_instructions.cpp +++ b/third_party/rust/glslopt/glsl-optimizer/src/compiler/glsl/lower_instructions.cpp @@ -118,7 +118,7 @@ * Converts double trunc, ceil, floor, round to fract */ -#include "c99_math.h" +#include <math.h> #include "program/prog_instruction.h" /* for swizzle */ #include "compiler/glsl_types.h" #include "ir.h" diff --git a/third_party/rust/glslopt/glsl-optimizer/src/util/rounding.h b/third_party/rust/glslopt/glsl-optimizer/src/util/rounding.h index e329d43824..f897ec7969 100644 --- a/third_party/rust/glslopt/glsl-optimizer/src/util/rounding.h +++ b/third_party/rust/glslopt/glsl-optimizer/src/util/rounding.h @@ -24,9 +24,8 @@ #ifndef _ROUNDING_H #define _ROUNDING_H -#include "c99_math.h" - #include <limits.h> +#include <math.h> #include <stdint.h> #if defined(__SSE__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1)) || defined(_M_X64) diff --git a/third_party/rust/glslopt/glsl-optimizer/src/util/u_math.h b/third_party/rust/glslopt/glsl-optimizer/src/util/u_math.h index 59266c1692..42d9e348ec 100644 --- a/third_party/rust/glslopt/glsl-optimizer/src/util/u_math.h +++ b/third_party/rust/glslopt/glsl-optimizer/src/util/u_math.h @@ -38,10 +38,9 @@ #ifndef U_MATH_H #define U_MATH_H - -#include "c99_math.h" #include <assert.h> #include <float.h> +#include <math.h> #include <stdarg.h> #include "bitscan.h" |