diff options
author | adam <adam@pkgsrc.org> | 2005-01-04 15:49:24 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2005-01-04 15:49:24 +0000 |
commit | c36d3b9ed68d5200a982afc1e4e9ade55a38d027 (patch) | |
tree | e6e3ccf1ede62fe06541014f09e8c5abf2c18dc0 /graphics/MesaLib/patches | |
parent | 050a82bf0134a338f685b0c86de21057bc67107f (diff) | |
download | pkgsrc-c36d3b9ed68d5200a982afc1e4e9ade55a38d027.tar.gz |
Changes 6.2.1:
Bug fixes:
- don't apply regular fog or color sum when using a fragment program
- glProgramEnvParameter4fARB always generated an error on
GL_FRAGMENT_PROGRAM_ARB (fdo bug 1645)
- glVertexAttrib3svNV and glVertexAttrib3svARB were broken
- fixed width/height mix-up in glSeparableFilter2D()
- fixed regression in glCopyPixels + convolution
- glReadPixels from a clipped front color buffer didn't always work
- glTexImage didn't accept GL_RED/GREEN/BLUE as the format
- Attempting queries/accesses of VBO 0 weren't detected as errors
- paletted textures failed if the palette had fewer that 256 entries
Changes:
- fixed a bunch of compiler warnings found with gcc 3.4
- bug reports should to go bugzilla.freedesktop.org
Diffstat (limited to 'graphics/MesaLib/patches')
-rw-r--r-- | graphics/MesaLib/patches/patch-ac | 6 | ||||
-rw-r--r-- | graphics/MesaLib/patches/patch-ag | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/graphics/MesaLib/patches/patch-ac b/graphics/MesaLib/patches/patch-ac index efe3ce9fbac..45d033b3fe4 100644 --- a/graphics/MesaLib/patches/patch-ac +++ b/graphics/MesaLib/patches/patch-ac @@ -1,6 +1,6 @@ -$NetBSD: patch-ac,v 1.6 2004/10/26 13:55:37 adam Exp $ +$NetBSD: patch-ac,v 1.7 2005/01/04 15:49:24 adam Exp $ ---- Makefile.orig 2004-10-01 21:34:29.000000000 +0000 +--- Makefile.orig 2004-12-05 18:25:19.000000000 +0000 +++ Makefile @@ -2,7 +2,7 @@ @@ -11,7 +11,7 @@ $NetBSD: patch-ac,v 1.6 2004/10/26 13:55:37 adam Exp $ default: $(TOP)/configs/current -@@ -98,6 +98,7 @@ linux-x86-64-static \ +@@ -100,6 +100,7 @@ linux-x86-64-static \ linux-x86-glide \ linux-x86-static \ netbsd \ diff --git a/graphics/MesaLib/patches/patch-ag b/graphics/MesaLib/patches/patch-ag index f9b2ba0c78e..9b5a63ab2dd 100644 --- a/graphics/MesaLib/patches/patch-ag +++ b/graphics/MesaLib/patches/patch-ag @@ -1,8 +1,8 @@ -$NetBSD: patch-ag,v 1.3 2004/10/26 13:55:37 adam Exp $ +$NetBSD: patch-ag,v 1.4 2005/01/04 15:49:24 adam Exp $ ---- src/glut/glx/Makefile.orig 2004-06-25 22:51:39.000000000 +0000 +--- src/glut/glx/Makefile.orig 2004-12-05 18:00:20.000000000 +0000 +++ src/glut/glx/Makefile -@@ -80,6 +80,7 @@ OBJECTS = $(SOURCES:.c=.o) +@@ -79,6 +79,7 @@ OBJECTS = $(SOURCES:.c=.o) ##### RULES ##### .c.o: @@ -10,7 +10,7 @@ $NetBSD: patch-ag,v 1.3 2004/10/26 13:55:37 adam Exp $ $(CC) -c -I$(TOP)/include $(CFLAGS) $(GLUT_CFLAGS) $< -@@ -91,10 +92,8 @@ default: $(LIB_DIR)/$(GLUT_LIB_NAME) +@@ -90,10 +91,8 @@ default: $(LIB_DIR)/$(GLUT_LIB_NAME) # Make the library $(LIB_DIR)/$(GLUT_LIB_NAME): depend $(OBJECTS) |