Bug fixes: - deleting the currently bound texture could cause bad problems - using fog could result in random vertex alpha values - AA triangle rendering could touch pixels outside right window bound - fixed byteswapping problem in clear_32bit_ximage() function - fixed bugs in wglUseFontBitmapsA(), by Frank Warmerdam - fixed memory leak in glXUseXFont() - fragment sampling in AA triangle function was off by 1/2 pixel - Windows: reading pixels from framebuffer didn't always work - glConvolutionFilter2D could segfault or cause FP exception - fixed segfaults in FX and X drivers when using tex unit 1 but not 0 - GL_NAND logicop didn't work right in RGBA mode - fixed a memory corruption bug in vertex buffer reset code - clearing the softwara alpha buffer with scissoring was broken - fixed a few color index mode fog bugs - fixed some bad assertions in color index mode - fixed FX line 'stipple' bug #420091 Changes: - optimized writing mono-colored pixel spans to X pixmaps - increased max viewport size to 2048 x 2048
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
$NetBSD: patch-aa,v 1.4 2001/05/30 07:53:04 drochner Exp $
|
|
|
|
--- configure.orig Thu May 17 00:28:58 2001
|
|
+++ configure Fri May 18 14:16:44 2001
|
|
@@ -823,8 +823,8 @@
|
|
MESA_MAJOR=3
|
|
MESA_MINOR=4
|
|
MESA_TINY=2
|
|
-LIBGL_VERSION=1:2:0${MESA_MAJOR}0${MESA_MINOR}0${MESA_TINY}
|
|
-LIBGLU_VERSION=1:1:0${MESA_MAJOR}0${MESA_MINOR}0${MESA_TINY}
|
|
+LIBGL_VERSION=${MESA_MAJOR}:${MESA_MINOR}:${MESA_TINY}
|
|
+LIBGLU_VERSION=${MESA_MAJOR}:${MESA_MINOR}:${MESA_TINY}
|
|
LIBGLUT_VERSION=3:7:0
|
|
|
|
|
|
@@ -4635,7 +4635,7 @@
|
|
if test -d $srcdir/src-glut; then
|
|
have_glut_source=yes
|
|
else
|
|
- { echo "configure: error: GLUT sources missing; that is not supported at this point." 1>&2; exit 1; }
|
|
+ { echo "configure: error: GLUT sources missing; that is not supported at this point." 1>&2; }
|
|
fi
|
|
echo "$ac_t""$have_glut_source" 1>&6
|
|
need_glut=no
|
|
@@ -4673,7 +4673,7 @@
|
|
done
|
|
echo "$ac_t""$have_demo_source" 1>&6
|
|
if test "x$have_demo_source" != xyes; then
|
|
- { echo "configure: error: Demo sources missing; that is not supported at this point." 1>&2; exit 1; }
|
|
+ { echo "configure: error: Demo sources missing; that is not supported at this point." 1>&2; }
|
|
fi
|
|
|
|
|