Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-21 | st/glx: variable 'i' is an enum | Brian Paul | |
Now we can get see 'i' as an enum name instead of a plain integer in gdb. | |||
2010-04-21 | targets: Don't check if we should use trace | Jakob Bornecrantz | |
Trace does its own checking, and it used the GALLIUM_TRACE variable as well, but expected a file and not a bool argument. | |||
2010-04-21 | mesa/st: Translate a few more mesa/gallium formats. | José Fonseca | |
These endup used by Xvnc. | |||
2010-04-20 | llvmpipe: Remove unused variable. | Vinson Lee | |
2010-04-20 | mesa: do version checking for GL 3.x queries | Brian Paul | |
2010-04-20 | mesa: API and state for GL 3.1 primitive restart | Brian Paul | |
2010-04-20 | mesa: add GL 3.2 GL_CONTEXT_PROFILE_MASK query | Brian Paul | |
2010-04-20 | mesa: remove some comments | Brian Paul | |
2010-04-21 | intel: Add Sandybridge mobile chipset id | Zhenyu Wang | |
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com> | |||
2010-04-21 | intel: Clean up chipset name and gen num for Ironlake | Zhenyu Wang | |
Rename old IGDNG to Ironlake, and set 'gen' number for Ironlake as 5, so tracking the features with generation num instead of special is_ironlake flag. Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com> | |||
2010-04-20 | gallivm: Remove unnecessary headers. | Vinson Lee | |
2010-04-20 | i965g: s/inttypes.h/stdint.h/ | Vinson Lee | |
MSVC doesn't have either but Mesa has stdint.h at include/c99. | |||
2010-04-20 | i965g: Remove unnecessary header. | Vinson Lee | |
2010-04-20 | llvmpipe: Change return type of declaration to match code. | Vinson Lee | |
Commit 2142108e0e1cf1ed8d0142e9c41fe1947abe0907 changed the return type of llvmpipe_get_texture_image_address function but didn't change the declaration. Fixes build. | |||
2010-04-20 | llvmpipe: code consolidation | Brian Paul | |
2010-04-20 | llvmpipe: remove debug code and simplify | Brian Paul | |
2010-04-20 | llvmpipe: fix cube face addressing bug | Brian Paul | |
Fixes fd.o bug 27760 (pigit fbo-cubemap). | |||
2010-04-20 | llvmpipe: whitespace fix | Brian Paul | |
2010-04-20 | gallium: Fix copy typo | Jakob Bornecrantz | |
2010-04-20 | svga: Minor clean up of winsys | Jakob Bornecrantz | |
2010-04-20 | radeong: Minor clean up of winsys | Jakob Bornecrantz | |
Also try to wrap trace around driver on non-debug builds, its free. | |||
2010-04-20 | nouveau: Minor clean up of winsys | Jakob Bornecrantz | |
2010-04-20 | i965g: Minor clean up of winsys | Jakob Bornecrantz | |
2010-04-20 | i915g: Minor clean up of winsys | Jakob Bornecrantz | |
2010-04-20 | st/egl: No need to use drm_api argument struct | Jakob Bornecrantz | |
2010-04-20 | st/egl: Use correct driver_name field to get kernel driver name | Jakob Bornecrantz | |
2010-04-20 | st/egl: Check for null destroy callback on api struct | Jakob Bornecrantz | |
2010-04-20 | mesa: better, smaller error handling code for glGet*() | Brian Paul | |
get.o is about 17% smaller. | |||
2010-04-20 | mesa: better, smaller error handling code for glEnable/Disable/IsEnabled() | Brian Paul | |
Use a goto instead of replicating the _mesa_error() call many times. enable.o is about 15% smaller. | |||
2010-04-20 | mesa: raise GL_INVALID_OPERATION for glReadPixels(GL_COLOR_INDEX) | Brian Paul | |
We no longer support CI-mode color buffers so this is always an error. | |||
2010-04-20 | targets: Use a valid winsys include path in Makefile.dri | Jakob Bornecrantz | |
2010-04-20 | r300g: Spill a bit more info about implementation errors in surface_copy. | Corbin Simpson | |
compiz appears to hit this. Weird. | |||
2010-04-20 | nv50: make a working check for user memory vertex/index buffers | Christoph Bumiller | |
2010-04-20 | nv50: fix FP result counting for depth output | Christoph Bumiller | |
2010-04-20 | nv50: support vertex index bias | Christoph Bumiller | |
2010-04-20 | llvmpipe: fix depth+stencil logic error | Brian Paul | |
If both Z-test and stencil-test were enabled, we were mis-computing the vector of updated Z buffer values. Fixes Z testing bug in progs/demos/fbotexture.c | |||
2010-04-20 | llvmpipe: fix comment/typo | Brian Paul | |
2010-04-20 | i915: Map sampler indices to texture units correctly for fragment shaders. | Eric Anholt | |
Fixes hang with "gst-launch-0.10 videotestsrc ! video/x-raw-rgb ! glupload ! gleffects effect=heat ! glimagesink" which uses 2 samplers pointing at GL_TEXTURE1 and GL_TEXTURE2, and piglit glsl-fs-sampler-numbering. | |||
2010-04-20 | i915: Add missing break; after handling the stub NOISE instructions. | Eric Anholt | |
Bug #27348 | |||
2010-04-20 | llvmpipe: fix incorrect front-facing value for fragment shader | Brian Paul | |
The TGSI convention is +1 for front-facing, -1 for back-facing Fixes glean glsl1 gl_FrontFacing tests. | |||
2010-04-20 | llvmpipe: rename mode -> interp | Brian Paul | |
2010-04-20 | llvmpipe: remove dead code/comment | Brian Paul | |
2010-04-20 | nv50: move declaration before code | Brian Paul | |
2010-04-20 | nv50: fixed void pointer arithment warning | Brian Paul | |
2010-04-20 | gallium/util: remove bogus return statement | Brian Paul | |
util_surfaces_do_detach() is a void-valued function. | |||
2010-04-20 | progs/tests: asst. changes to antialias.c | Brian Paul | |
2010-04-20 | gallium: replace pipe_resource::_usage with pipe_resource::usage | Brian Paul | |
2010-04-20 | nv50: add missing idxbias param to nv50_push_elements_instanced() | Brian Paul | |
2010-04-20 | llvmpipe: remove call to llvmpipe_set_texture_image_layout() | Brian Paul | |
This would seem to be needed but caused some regressions. More investigation will be done. | |||
2010-04-20 | llvmpipe: Re-enable half float formats. | José Fonseca | |
They should be working now, both textures and vertex/index/buffers. This reverts commit efc69ca61cf8fe7d2d44d177e7737999b6a114b5. |