diff options
author | adam <adam@pkgsrc.org> | 2007-08-12 15:14:46 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2007-08-12 15:14:46 +0000 |
commit | b6250536dc1537a19dfbcf344ffc2b7dc97a137c (patch) | |
tree | 72b79a6f839613cc2d13edc90230a76c294917db /graphics/Mesa | |
parent | ab8afa61c5be76229067c07972ffa7f5a67a97a7 (diff) | |
download | pkgsrc-b6250536dc1537a19dfbcf344ffc2b7dc97a137c.tar.gz |
Changes 7.0.1:
New features:
* Added a bluegene-osmesa build config
Bug fixes:
* Added a few missing OpenGL 2.0 API entrypoints
* Fixed glDrawPixels(GL_STENCIL_INDEX) pixel transfer
* GLSL bug fix: added vec2(vec4) constructor
* GLSL bug fix: .strq and .rgba writemasks didn't always work
* Stencil pixel map didn't always work for glDrawPixels
* Fixed polygon stipple bug in i915 driver
* Binding a zero-sized texture didn't disable texturing
* Queries of GL_INFO_LOG_LENGTH, GL_SHADER_SOURCE_LENGTH didn't include
the terminating zero
* glXChooseFBConfig() in Xlib driver didn't handle GLX_STEREO flag properly
* Fixed a GLSL function call bug
* glPointParameteriv(GL_DISTANCE_ATTENUATION_EXT) didn't work
* glGetAttribLocation() always returned 1
* Fixed a few memory-related bugs in GLU library
Changes 7.0.0:
New features:
* OpenGL 2.0 and 2.1 API support.
Bug fixes:
* Fixed a few fog-related bugs.
* Fixed broken GLSL mix() function.
* Fixed broken GLSL exp() functions.
* Fixed GLSL mod4(vec4, vec4) bug.
* Implemented GLSL asin(), acos(), atan() functions.
* Fixed an R300 driver bug that caused Xorg composite manager to crash
* Fixed R300 vertex program/matrix bug
* GLSL dFdx() and dFdy() work for fragment program inputs now (texcoords)
* Specifying an invalid texture unit as a sampler could lead to a crash
* The GLX protocol request for glXDestroyPBuffer() was incorrect
* ARB vp state.light[n].half value was incorrect
* Fixed a positional light source bug
* Fixed point size attenuation problem
* glPopAttrib didn't restore texture object's LOD bias
* Fixed a TLS / TEXTREL problem
Diffstat (limited to 'graphics/Mesa')
-rw-r--r-- | graphics/Mesa/Makefile.common | 5 | ||||
-rw-r--r-- | graphics/Mesa/Makefile.lib | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/graphics/Mesa/Makefile.common b/graphics/Mesa/Makefile.common index ba74cad4e2e..acc3072636a 100644 --- a/graphics/Mesa/Makefile.common +++ b/graphics/Mesa/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.55 2007/02/22 19:26:32 wiz Exp $ +# $NetBSD: Makefile.common,v 1.56 2007/08/12 15:14:46 adam Exp $ # # This Makefile fragment is included either directly or indirectly (through # Makefile.lib) by all packages that are built from the Mesa sources. @@ -11,12 +11,11 @@ EXTRACT_SUFX= .tar.bz2 # When changing this version, please run "make distinfo" in the following # package directories: -# # graphics/MesaLib # graphics/MesaDemos # graphics/glx-utils # -MESA_VERSION= 6.4.2 +MESA_VERSION= 7.0.1 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.mesa3d.org/ diff --git a/graphics/Mesa/Makefile.lib b/graphics/Mesa/Makefile.lib index a03e8d5c4c5..9bd044aa05a 100644 --- a/graphics/Mesa/Makefile.lib +++ b/graphics/Mesa/Makefile.lib @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.lib,v 1.4 2007/03/19 16:47:43 reed Exp $ +# $NetBSD: Makefile.lib,v 1.5 2007/08/12 15:14:47 adam Exp $ # # This Makefile fragment is included by all packages that build libraries # from the Mesa sources. @@ -45,7 +45,7 @@ BUILD_TARGET= pkgsrc .PHONY: Mesa-install-libs pre-install: Mesa-install-libs Mesa-install-libs: - @${TEST} -z ${INSTLIBS:M*:Q}"" || ${ECHO_MSG} "Installing libraries." + ${TEST} -z ${INSTLIBS:M*:Q}"" || ${ECHO_MSG} "Installing libraries." @for lib in "" ${INSTLIBS}; do \ ${TEST} -n "$$lib" || continue; \ ${SETENV} ${MAKE_ENV} \ |