search for: flt_max

Displaying 4 results from an estimated 4 matches for "flt_max".

Did you mean: lt_max
2010 Feb 05
5
White screen after some time in WoW
My problem: After some time playing WoW (about 1-2 minutes) the whole screen turns white. Everything else seems to work perfectly, I still have sound and I still can interact with my character. I can even open a terminal (blindfolded) and type 'killall WoW.exe' to quit WoW and make the white screen go away. wine --version outputs 'wine-1.1.37' I use the propiertary nVidia drivers
2023 Mar 01
1
[libnbd PATCH 6/6] common/include: Fix MIN and MAX macros so they can be nested [finish port]
...minmax.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/common/include/test-minmax.c b/common/include/test-minmax.c index 285f8074e503..095c91491acc 100644 --- a/common/include/test-minmax.c +++ b/common/include/test-minmax.c @@ -154,5 +154,19 @@ main (void) SIGNED_TEST (f, -FLT_MAX, FLT_MAX); SIGNED_TEST (d, -DBL_MAX, DBL_MAX); + /* Test that MIN and MAX can be nested. This is really a compile + * test, but we do check the answer. + */ + assert (MIN (MIN (1, 2), 3) == 1); + assert (MAX (MIN (1, 2), 3) == 3); + assert (MIN (MAX (1, 2), 3) == 2); + assert (MAX (M...
2010 May 18
1
runes of Magic doesn't display login
...p_program_source vec4 R2; fixme:d3d_shader:shader_glsl_dump_program_source attribute vec4 attrib0; fixme:d3d_shader:shader_glsl_dump_program_source vec4 tmp0; fixme:d3d_shader:shader_glsl_dump_program_source vec4 tmp1; fixme:d3d_shader:shader_glsl_dump_program_source const float FLT_MAX = 1e38; fixme:d3d_shader:shader_glsl_dump_program_source void main() { fixme:d3d_shader:shader_glsl_dump_program_source R0.w = (attrib0.w * VC[1].x); fixme:d3d_shader:shader_glsl_dump_program_source R1.w = (fract(R0.w)); fixme:d3d_shader:shader_glsl_dump_program_source R0.xy = ((att...
2023 Mar 01
6
[libnbd PATCH 0/6] common: catch up with nbdkit
If we compare the "common" subdirectory between nbdkit @ 6b4178d0fdfe ("ci: Temporarily disable perl in MacOS", 2023-02-27) and libnbd @ d05cd8f384a7 ("Version 1.15.11.", 2023-02-28), we find differences. We can categorize these differences along two (orthogonal) axes: - Intentional or unintentional. Intentional differences are for example when one of the libnbd