diff options
author | drochner <drochner@pkgsrc.org> | 2001-05-30 07:53:01 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2001-05-30 07:53:01 +0000 |
commit | 93ca91b6eb76a5697edc051a431994a45af63b07 (patch) | |
tree | 4ca4fe67731d4a387fe44bfdba71c58808a745ed /graphics/glu | |
parent | f01e4516cd82892f155930069492df7ce8461dfe (diff) | |
download | pkgsrc-93ca91b6eb76a5697edc051a431994a45af63b07.tar.gz |
update Mesa to 3.4.2
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
Diffstat (limited to 'graphics/glu')
-rw-r--r-- | graphics/glu/distinfo | 8 | ||||
-rw-r--r-- | graphics/glu/patches/patch-aa | 26 |
2 files changed, 26 insertions, 8 deletions
diff --git a/graphics/glu/distinfo b/graphics/glu/distinfo index c484533973f..e0f01aaeb1f 100644 --- a/graphics/glu/distinfo +++ b/graphics/glu/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2001/04/21 09:54:14 wiz Exp $ +$NetBSD: distinfo,v 1.3 2001/05/30 07:53:03 drochner Exp $ -SHA1 (MesaLib-3.4.1.tar.bz2) = d239335f11e5322d98a98aa699afb4fc5b995197 -Size (MesaLib-3.4.1.tar.bz2) = 1379494 bytes -SHA1 (patch-aa) = 36ad59ccff1f99f9352c0fc6c9d8754f4ee01a5f +SHA1 (MesaLib-3.4.2.tar.bz2) = 0beefac5ecf9e65c3738ac935abd158987cce346 +Size (MesaLib-3.4.2.tar.bz2) = 1381342 bytes +SHA1 (patch-aa) = 8cf672d645f9681b0987e94d3692903a5314173e diff --git a/graphics/glu/patches/patch-aa b/graphics/glu/patches/patch-aa index 180f4d09488..83fca963c29 100644 --- a/graphics/glu/patches/patch-aa +++ b/graphics/glu/patches/patch-aa @@ -1,11 +1,11 @@ -$NetBSD: patch-aa,v 1.3 2001/03/23 12:36:55 drochner Exp $ +$NetBSD: patch-aa,v 1.4 2001/05/30 07:53:04 drochner Exp $ ---- configure.orig Thu Feb 8 00:27:38 2001 -+++ configure Mon Mar 12 16:13:43 2001 +--- 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=1 + 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} @@ -13,3 +13,21 @@ $NetBSD: patch-aa,v 1.3 2001/03/23 12:36:55 drochner Exp $ 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 + + |