| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
| |
Fixes warning seen with Shadowgrounds. See bug 24016.
|
| |
|
| |
|
|
|
|
| |
Signed-off-by: Jeremy Huddleston <[email protected]>
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
configure.ac
progs/demos/morph3d.c
progs/demos/textures.c
progs/glsl/shtest.c
progs/glsl/texaaline.c
progs/tests/packedpixels.c
progs/xdemos/corender.c
src/mesa/main/version.h
|
| | |
|
| |
| |
| |
| | |
See bug 25663.
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Conflicts:
src/mesa/drivers/dri/unichrome/via_ioctl.c
src/mesa/drivers/dri/unichrome/via_screen.c
src/mesa/main/version.h
src/mesa/state_tracker/st_atom.c
|
| |/ |
|
| |
| |
| |
| | |
See bug 25663.
|
| |
| |
| |
| | |
See bug 25663.
|
|\| |
|
| | |
|
| |
| |
| |
| |
| | |
_mesa_TexGend calls _mesa_TexGenfv, which uses the params argument
as an array.
|
| |
| |
| |
| |
| | |
_mesa_Lighti calls _mesa_Lightiv, which uses the params argument
as an array.
|
| | |
|
| |
| |
| |
| |
| | |
_mesa_PointParameteri calls _mesa_PointParameterfv, which uses the
params argument as an array.
|
| |
| |
| |
| |
| | |
_mesa_PointParameterf calls _mesa_PointParameterfv, which uses the
params argument as an array.
|
| |
| |
| |
| |
| | |
_mesa_LightModelf calls _mesa_LightModelfv, which uses the
params argument as an array.
|
| |
| |
| |
| |
| | |
This fixes invalid array indexing when baseLevel == MAX_TEXTURE_LEVELS.
See bug 25528.
|
| |
| |
| |
| |
| | |
_mesa_LightModeli calls _mesa_LightModeliv, which uses the
params argument as an array.
|
| |
| |
| |
| |
| | |
_mesa_Fogf calls _mesa_Fogfv, which uses the params argument
as an array.
|
| |
| |
| |
| |
| | |
_mesa_TexParameteri calls set_tex_parameteri, which uses the
params argument as an array.
|
| |
| |
| |
| |
| | |
_mesa_Fogi calls _mesa_Fogfv, which uses the params argument
as an array.
|
| |
| |
| |
| |
| | |
_mesa_TexParameteri calls set_tex_parameterf, which uses the
params argument as an array.
|
| |
| |
| |
| |
| | |
_mesa_TexParameterfv calls set_tex_parameteri, which uses the
params argument as an array.
|
| | |
|
| |
| |
| |
| |
| |
| | |
_mesa_TexGenf calls _mesa_TexGenfv, which uses the params argument
as an array.
(cherry picked from commit ca5a7aadb4361e7d053aea8687372cd44cbd8795)
|
| |
| |
| |
| |
| |
| | |
_mesa_TexGeni calls _mesa_TexGeniv, which uses the params argument
as an array.
(cherry picked from commit d55fb7c835b56951f05a058083e7eda264ba192e)
|
| |
| |
| |
| |
| |
| | |
_mesa_TexParameterf calls set_tex_parameterf, which uses the params
argument as an array.
(cherry picked from commit 270d36da146b899d39e08f830fe34b63833a3731)
|
| |
| |
| |
| |
| |
| | |
_mesa_TexParameterf calls set_tex_parameteri, which uses the params
argument as an array.
(cherry picked from commit a201dfb6bf28b89d6f511c2ec9ae0d81ef18511d)
|
| |
| |
| |
| |
| |
| | |
_mesa_TexEnvf calls _mesa_TexEnvfv, which uses the param argument
as an array.
(cherry picked from commit a11d60d14caf8efc07f70af63b57b33273f8cf9b)
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The assertion is that the correct read type to be using is the native
type of the underlying read renderbuffer. For some fallback paths, this
may be worse than GL_RGBA/GL_UNSIGNED_BYTE for reads today, but it gets
all drivers the expected GL_BGRA/GL_UNSIGNED_BYTE for ARGB8888 or
GL_BGR//GL_UNSIGNED_SHORT_5_6_5_REV for rgb565 with no work.
This fixes the intel (and other) DRI drivers to report read formats that
should hit blit PBO readpixels paths.
|
| |
| |
| |
| | |
Also modify the Makefile to use the correct version for the tarballs.
|
| | |
|
| | |
|
| | |
|
|\|
| |
| |
| |
| |
| |
| | |
Conflicts:
progs/util/shaderutil.c
src/mesa/drivers/dri/r600/r600_context.c
src/mesa/main/version.h
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This enum is only supported for OpenGL 2.0. If a driver supports
OpenGL 1.4 and GL_ARB_point_sprite, using this enum should generate an
error. This is important because, for example, i915 and i830 can
support GL_ARB_point_sprite, but they cannot support
GL_POINT_SPRITE_COORD_ORIGIN.
This commit just removes the check for NV_point_sprite, which is
completely wrong, and add some comments describing what the code
should do. I don't see an easy way to check for version >= 2.0 from
inside Mesa. Perhaps we should add an extension
GL_MESA_point_sprite_20 (like Intel's old GL_EXT_packed_pixels_12) to
indicate that this added bit of functionality is available.
Also note that glean's pointSprite test only checks for
GL_ARB_point_sprite before trying to use
GL_POINT_SPRITE_COORD_ORIGIN. Naturally, that fails on
non-2.0 implementations (i.e., Mac OS X on GMA 950).
|
| |
| |
| |
| |
| |
| | |
Fixes `xlib' driver build on AIX.
Signed-off-by: Brian Paul <[email protected]>
|
| | |
|
| |
| |
| |
| |
| | |
_mesa_TexParameterf calls set_tex_parameterf, which uses the params
argument as an array.
|
| |
| |
| |
| |
| | |
_mesa_TexParameterf calls set_tex_parameteri, which uses the params
argument as an array.
|