Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-30 | r300: Remove unnecessary headers. | Vinson Lee | |
2010-01-30 | r200: Remove unnecessary headers. | Vinson Lee | |
2010-01-30 | r128: Remove unnecessary headers. | Vinson Lee | |
2010-01-30 | intel: Remove unnecessary headers. | Vinson Lee | |
2010-01-30 | i965: Remove unnecessary headers. | Vinson Lee | |
2010-01-30 | i915: Remove unnecessary headers. | Vinson Lee | |
2010-01-30 | intel: Respect texture tiling when doing a PBO blit teximage upload. | Eric Anholt | |
Bug #26008. Fixes piglit pbo-teximage-tiling-2. | |||
2010-01-30 | intel: Fix inverting of inversion test for windows in glClear cleanup. | Eric Anholt | |
Bug #26290. | |||
2010-01-29 | Merge commit 'lb2/arb_fragment_coord_conventions' | Keith Whitwell | |
2010-01-29 | tnl: check that state is validated before drawing | Brian Paul | |
(cherry picked from commit 9fd3c74724e557bc6ecc851d8552615ab3becfe2) Conflicts: src/mesa/tnl/t_draw.c | |||
2010-01-29 | st/mesa: check that state is validated before drawing | Brian Paul | |
(cherry picked from commit 4d1234e22242529c8d85f5ef0cf826af41a91570) Conflicts: src/mesa/state_tracker/st_draw.c | |||
2010-01-29 | vbo: fix missing state validation bugs | Brian Paul | |
Commit 2708ddfb06a36d8568e2aa130bf1f7d551fcd309 caused a few regressions. We need to check/validate state after calling bind_arrays() because it might set the _NEW_ARRAYS flag if the varying VP inputs change. The symptom of this problem was some attribute arrays being ignored (or interpreted as constant-valued) in glDrawRangeElements or glMultiDrawElements. A follow-on patch will add some additional asserts to try to catch this kind of thing in the future. (cherry picked from commit 3cba779e16935f7c3a0bfd8af48bd5e015068e96) | |||
2010-01-29 | mesa: do state validation in _mesa_valid_to_render() | Brian Paul | |
...rather than checking/validating before all the calls to _mesa_valid_to_render() and valid_to_render(). The next patch will actually fix some bugs... (cherry picked from commit 23eda89ec89e2bd5bc26077bd56e8d6b5d4040d4) | |||
2010-01-29 | windows: assorted build fixes | Brian Paul | |
These changes were originally submitted by Karl Schultz for Mesa 7.7-rc2 but weren't applied. (cherry picked from commit 82c76cd16f35f4d903f49761af7eb28a755ad299) | |||
2010-01-29 | mesa: Warn when indices are out of bounds, but do not skip the draw in debug ↵ | Brian Paul | |
builds. The driver (or preferably the hardware) should handle out of bounds indices. If there are problems then it's better to detect those in the debug builds. (cherry picked from commit e3257912e006120f6ab611e77005eed1a464030a) | |||
2010-01-29 | st/mesa: Gallium support for ARB_fragment_coord_conventions (v4) | Luca Barbieri | |
Changes in v4; - Implemented Brian Paul's style suggestions Changes in v3: - Use positive caps instead of negative ones Changes in v2: - Updated formatting The state tracker will use the TGSI convention properties if the hardware exposes the appropriate capability, and otherwise adjust WPOS itself. This will also fix some drivers that were previously broken due to their incorrect, inadvertent, use of conventions other than upper_left+half_integer. | |||
2010-01-29 | mesa: don't expose GL_ARB_fragment_coord_conventions until the GLSL part is done | Luca Barbieri | |
Exposing it was incorrect, as the GLSL part of the extension is missing. We still keep the ARB_fragment_coord_conventions field, so that the ARBfp parser can know whether to accept or reject the keywords. | |||
2010-01-28 | intel: Set the region's tiling to none when attaching a PBO to a region. | Eric Anholt | |
Note that when detaching the PBO from the region and making a new BO for the region, we don't make it tiled even if the region originally was. Fixes piglit pbo-teximage-tiling. | |||
2010-01-28 | i915: Remove unused initial and current state, now that there's nothing else. | Eric Anholt | |
2010-01-28 | intel: Remove long-disabled meta readpixels, and associated meta support. | Eric Anholt | |
2010-01-28 | Merge commit 'origin/perrtblend' | Roland Scheidegger | |
Conflicts: src/gallium/drivers/softpipe/sp_screen.c src/gallium/include/pipe/p_defines.h | |||
2010-01-28 | gallium: Enable multiple constant buffers for vertex and geometry shaders. | Michal Krol | |
2010-01-28 | radeon: Silence "format" compiler warnings. | Vinson Lee | |
2010-01-27 | swrast: s/FIXED_TO_FLOAT/FixedToFloat/ | Brian Paul | |
2010-01-27 | mesa: fix int/uint comparison warnings | Brian Paul | |
Reported by Karl Schultz. | |||
2010-01-27 | mesa: fix double->float assignment warnings, int/uint comparison warnings | Brian Paul | |
Reported by Karl Schultz. | |||
2010-01-27 | mesa: fix double->float assignment warnings | Brian Paul | |
Reported by Karl Schultz. | |||
2010-01-27 | mesa: fix int/uint comparison warnings | Brian Paul | |
Reported by Karl Schultz. | |||
2010-01-27 | tnl: fix double->float and int/uint conversion warnings | Brian Paul | |
Reported by Karl Schultz. | |||
2010-01-27 | swrast: silence double->float assignment warnings | Brian Paul | |
Reported by Karl Schultz. | |||
2010-01-27 | mesa: more info in glActiveTexture error msg | Brian Paul | |
2010-01-27 | r600: fix warning | Alex Deucher | |
2010-01-27 | r600: rv670 support 8 tex instructions just like other r6xx | Alex Deucher | |
also clarify some other const values. | |||
2010-01-27 | r600: increase max texture units to 16 | Andre Maasikas | |
2010-01-27 | r600: fix XPD with writemask | Andre Maasikas | |
same variable used for 2 different temp registers fixes e.g. glsl/bump | |||
2010-01-27 | radeon/r200/r300: don't clean non-emitted state. | Dave Airlie | |
So if we don't actually emit an atom to the hw because we don't need it in the current state (e.g. lighting related atoms when lighting is off) then don't mark it as clean, because when lighting gets switched on we won't emit it at all. This fixes funky gears colors. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-01-27 | radeon: remove unused file | Dave Airlie | |
2010-01-26 | intel: Remove dead code from having to clip copyteximage source rect. | Eric Anholt | |
mesa core does it now. If only it did so for other entrypoints. | |||
2010-01-26 | intel: Use a handy helper in glReadPixels source clipping. | Eric Anholt | |
2010-01-26 | intel: Clean up stale comments about cliprects. | Eric Anholt | |
2010-01-26 | intel: Remove the remaining cliprects code from DRI1. | Eric Anholt | |
2010-01-26 | intel: Remove DRI1 junk from spans code. | Eric Anholt | |
This reduces the driver size by over 1%. | |||
2010-01-26 | intel: Remove DRI1 junk from blit glBitmap. | Eric Anholt | |
2010-01-26 | intel: Remove DRI1 junk from CopyPixels. | Eric Anholt | |
2010-01-26 | intel: Remove DRI1 junk from glClear blit implementation. | Eric Anholt | |
2010-01-26 | i965: Remove DRI1 leftovers from stipple offset handling. | Eric Anholt | |
2010-01-26 | st/mesa: Silence uninitialized variable warning. | Vinson Lee | |
2010-01-26 | intel: Fix PBO blit ReadPixels from an FBO. | Eric Anholt | |
Bug #25921 -- clutter PBO usage gave unreliable results. | |||
2010-01-26 | i965: Add support for EXT_draw_buffers2. | Eric Anholt | |
2010-01-26 | i965: Fix fp fragment.position handling and enable HW part of ARB_fcc. | Eric Anholt | |
As with swrast, this fixes the default pixel center behavior which was broken, and implements the previous behavior for integer. Fixes piglit fp-arb-fragment-coord-conventions-none. The extension won't be exposed until we get the GLSL part implemented. The DRI1 origin_x/y parts are dropped since they're no longer relevant. |