diff options
author | adam <adam@pkgsrc.org> | 2006-01-19 12:53:17 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2006-01-19 12:53:17 +0000 |
commit | f1fb57c495f70f101d3f74500d457c322bc877ba (patch) | |
tree | f25b2eb5201eb92dae2a8b8783c830f0536b3989 /graphics/glu | |
parent | bc79a3aee852dc0375711d4e015dcd5ee21f6147 (diff) | |
download | pkgsrc-f1fb57c495f70f101d3f74500d457c322bc877ba.tar.gz |
Changes 6.4:
New:
- Added a fast XOR line drawing function in Xlib driver
- Added support for GL_ARB_texture_mirrored_repeat to savage
driver (supported only on Savage4 hardware).
Changes:
- Mesa now packaged in three parts: Library, Demos and GLUT
Bug fixes:
- GLX_X_RENDERABLE token wasn't accepted by glXChooseFBConfig
- Some files were present multiple times in the 6.3.2 tarballs
- r200_vtxtmp_x86.S file was missing from 6.3.2 tarball (bug 4207)
- glxgears_fbconfig demo didn't work (bug 4237)
- fixed bug when bilinear sampling 2d textures with borders
- glXCreatePbuffer() could segfault instead of returning 0 (bug 4235)
- fixed undefined frexp and rand in X.org libGLcore.a (bug 4242)
- fixed a few problems with proxy color tables (bug 4270)
- fixed precision problem in Z clearing (bug 4395)
- glBitmap, glDraw/CopyPixels mistakenly generated selection hits
- fixed potential segfault caused by reading pixels outside
of renderbuffer bounds
- glGetTexLevelParameter didn't accept GL_TEXTURE_DEPTH_SIZE_ARB
- fixed memory corruption bug involving software alpha buffers
- glReadPixels clipped by window bounds was sometimes broken
- glDraw/CopyPixels of stencil data ignored the stencil write mask
- glReadPixels from a texture bound to a framebuffer object didn't work
- glIsRender/FramebufferEXT weren't totally correct
- fixed a number of point size attenuation/fade bugs
- fixed glFogCoord bug 4729
- GLX encoding for transpose matrix functions was broken
- fixed broken fragment program KIL and SWZ instructions
- fragment programs that wrote result.depth.z didn't work
Changes 6.4.1:
Bug fixes:
- redefining a vertex program string didn't take effect in TNL module
- fixed occasional segfault upon vertex/fragment parsing error
- vertex program LIT instruction didn't handle 0^0=1 correctly
- fragment program fog option didn't work with glDrawPixels, glBitmap
- USE_MGL_NAMESPACE didn't work for x86-64
- OSMesa demos were missing from previous release tarballs
- fixed problem with float->ushort conversion in glClear (bug 4992)
- popping of GL_EYE_PLANE texgen state was broken (bug 4996)
- popping of GL_SPOT_DIRECTION light state was broken (bug 5005)
- fixed occasional triangle color interpolation problem on VMS
- work around invalid free() call (bug 5131)
- fixed BSD X server compilation problem by including stdint.h
Diffstat (limited to 'graphics/glu')
-rw-r--r-- | graphics/glu/Makefile | 3 | ||||
-rw-r--r-- | graphics/glu/builtin.mk | 6 |
2 files changed, 4 insertions, 5 deletions
diff --git a/graphics/glu/Makefile b/graphics/glu/Makefile index 722ddef370a..7d6c45c454a 100644 --- a/graphics/glu/Makefile +++ b/graphics/glu/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.41 2005/12/05 20:50:20 rillig Exp $ +# $NetBSD: Makefile,v 1.42 2006/01/19 12:53:17 adam Exp $ PKGNAME= ${DISTNAME:C/MesaLib/glu/} -PKGREVISION= 1 COMMENT= GLU polygon tessellation facility for Mesa CONFLICTS+= Mesa-glx-[0-9]* diff --git a/graphics/glu/builtin.mk b/graphics/glu/builtin.mk index 18f3916117e..3d15449dde3 100644 --- a/graphics/glu/builtin.mk +++ b/graphics/glu/builtin.mk @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.8 2005/06/03 19:12:49 jlam Exp $ +# $NetBSD: builtin.mk,v 1.9 2006/01/19 12:53:17 adam Exp $ BUILTIN_PKG:= glu @@ -45,10 +45,10 @@ USE_BUILTIN.glu= ${IS_BUILTIN.glu} . if defined(BUILTIN_PKG.glu) && \ !empty(IS_BUILTIN.glu:M[yY][eE][sS]) USE_BUILTIN.glu= yes -. for _dep_ in ${BUILDLINK_DEPENDS.glu} +. for dep in ${BUILDLINK_DEPENDS.glu} . if !empty(USE_BUILTIN.glu:M[yY][eE][sS]) USE_BUILTIN.glu!= \ - if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.glu:Q}; then \ + if ${PKG_ADMIN} pmatch ${dep:Q} ${BUILTIN_PKG.glu:Q}; then \ ${ECHO} yes; \ else \ ${ECHO} no; \ |