Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-09 | i965: Accelerate depth textures with border color. | Eric Anholt | |
The fallback was introduced to fix bug #16697, but made the test it was fixing run excessively long. | |||
2008-10-09 | i965: Actually hook up the accelerated DrawPixels support. | Eric Anholt | |
2008-10-07 | i965: Add ARB_occlusion_query support. | Eric Anholt | |
2008-10-08 | i965: Fix a potential assertion failure. | Xiang, Haihao | |
2008-10-01 | i965: sampler default color ends up in texture cache, not instructions. | Eric Anholt | |
See volume 4, SAMPLER_BORDER_COLOR_STATE programming notes. | |||
2008-10-01 | i965: Fix overwriting of depth override for SetTexOffset. | Eric Anholt | |
Fixes black borders around windows in compiz. Bug #17233. | |||
2008-09-28 | Remove TNL-to-VP tracking from i965 | Ian Romanick | |
The i965 driver previously had it's own set of code to convert fixed-function TNL state to a vertex program. Core Mesa has code to do this, so there is no reason to duplicate that effort in the driver. In fact, this duplication leads to bugs when other aspects of the Mesa infrastructure change. | |||
2008-09-26 | intel: Fix a number of memory leaks on context destroy. | Eric Anholt | |
2008-09-25 | i965: support for sin() and cos() in vertex shaders. | Sam Hocevar | |
2008-09-25 | i965: more meaningful message for unsupported opcodes. | Sam Hocevar | |
2008-09-23 | i965: Cope with batch getting flushed in the middle of batchbuffer emits. | Eric Anholt | |
This isn't required for GEM (at least, yet), but the check_aperture code for non-GEM results in batch getting flushed during emit. brw_state_upload restarts state emits, but a bunch of the state emit functions were assuming that they would be called exactly once, after prepare and before new_batch. Bug #17179. | |||
2008-09-22 | i965: Adapt to new TNL program tracking semantics | Ian Romanick | |
This fixes bugzilla #17718. | |||
2008-09-22 | i965: fix compilation | Benjamin Close | |
Found By: Tinderbox | |||
2008-09-18 | mesa: added "main/" prefix to includes, remove some -I paths from ↵ | Brian Paul | |
Makefile.template | |||
2008-09-10 | intel: track move of bo_exec from drivers to bufmgr. | Eric Anholt | |
2008-09-10 | intel: track bufmgr move to libdrm_intel and bufmgr_fake irq emit/wait change. | Eric Anholt | |
2008-09-04 | intel: Fix depth_stencil texture. | Xiang, Haihao | |
2008-09-03 | intel: Fix refcounting on depth buffer initialization in DRI2. | Eric Anholt | |
(Reverts a change to work around the problem on 965). | |||
2008-08-29 | DRI2: Drop sarea, implement swap buffers in the X server. | Kristian Høgsberg | |
2008-08-29 | i965: force thread switch after IF/ELSE/ENDIF. partial fix for #16882. | Xiang, Haihao | |
A thread switch is implicitly invoked after the issuance of an IF/ELSE/ENDIF instruction if necessary. Unfortunately it seems sometimes a forced thread switch is needed. | |||
2008-08-29 | i965: mask control for BREAK/CONT/DO/WHILE. partial fix fox #16882 | Xiang, Haihao | |
2008-08-29 | i965: Push/pop instruction state. partial fix for #16882 | Xiang, Haihao | |
2008-08-24 | Revert "Revert "Merge branch 'drm-gem'"" | Dave Airlie | |
This reverts commit 7c81124d7c4a4d1da9f48cbf7e82ab1a3a970a7a. | |||
2008-08-24 | Revert "Merge branch 'drm-gem'" | Dave Airlie | |
This reverts commit 53675e5c05c0598b7ea206d5c27dbcae786a2c03. Conflicts: src/mesa/drivers/dri/i965/brw_wm_surface_state.c | |||
2008-08-21 | 965: Fix incorrect backface culling | Krzysztof Czurylo | |
Fix incorrect backface culling for OGL tunnel in wireframe and point mode. | |||
2008-08-21 | 965: Fix color clamping issues | Krzysztof Czurylo | |
Patch is correctly applied this time. | |||
2008-08-21 | Formatting changes to ease application of patches | Ian Romanick | |
2008-08-21 | i965: use dri_bo_subdata in vertex upload to get pwrite used. | Eric Anholt | |
Otherwise, we would ping-pong objects to GTT and back as we did pwrite on indices (flushed and mapped to GTT) and mapped for vertices (moved back to CPU domain). Fixes bug #17180. | |||
2008-08-20 | i965: fixup format for TFP zero copy | Dave Airlie | |
(cherry picked from commit 9bc9e0ecb0fb2069b2c123e665eb2118e358098f which was lost in a merge) | |||
2008-08-20 | i965: make tex offset override work.. | Dave Airlie | |
should fix fd.o 14441 (cherry-picked from commit d4244683a61f66cfb78408a37cf2587587847f96 which was lost in a merge) | |||
2008-08-20 | i965: Enable GL_ARB_fragment_program_shadow and fix key->shadowtex_mask. ↵ | Xiang, Haihao | |
(bug #16852, #16853) | |||
2008-08-08 | Merge branch 'drm-gem' | Eric Anholt | |
Conflicts: src/mesa/drivers/dri/intel/intel_span.c src/mesa/main/fbobject.c This converts the i915 driver to use the GEM interfaces for object management. | |||
2008-08-08 | intel-gem: Update to new check_aperture API for classic mode. | Eric Anholt | |
To do this, I had to clean up some of 965 state upload stuff. We may end up over-emitting state in the aperture overflow case, but that should be rare, and I'd rather have the simplification of state management. | |||
2008-08-08 | 965: cleanups to state emission from aperture checking and state ordering. | Eric Anholt | |
2008-08-06 | i965: update TexSrcUnit for OPCODE_TXB | Xiang, Haihao | |
2008-08-05 | i965: Use program->SamplerUnits[] to get the appropriate texture unit. | Xiang, Haihao | |
inst->TexSrcUnit is used as an index into program->SamplerUnits[] since the commit ade508312c701ce89d3c2cd717994dbbabb4f207, and program->SamplerUnits is a sampler-to-texture-unit mapping. | |||
2008-07-25 | Merge branch 'master' into drm-gem | Ian Romanick | |
Conflicts: src/mesa/drivers/dri/common/dri_bufmgr.c src/mesa/drivers/dri/i965/brw_wm_surface_state.c | |||
2008-07-25 | i965: fixup format for TFP zero copy | Dave Airlie | |
2008-07-25 | i965: make tex offset override work.. | Dave Airlie | |
should fix fd.o 14441 | |||
2008-07-24 | Revert "965: Fix color clamping issues" | Ian Romanick | |
This reverts commit b993d539a76e7f1446890a85e4b61deec4d4162d. The patch was applied incorrectly. Actual fix coming soon. Sorry for the noise. | |||
2008-07-23 | 965: Fix partially transparent textures in Doom 3 engine games | Pawel Pieczul | |
Numbers of destination depth registers corrected (destination stencil register was sent as depth register). | |||
2008-07-21 | 965: Fix color clamping issues | Pawel Pieczul | |
2008-07-18 | intel: fix texture border issue. (bug #16697) | Xiang, Haihao | |
2008-07-16 | Remove redundant initalization of MaxTextureUnits | Ian Romanick | |
2008-07-11 | drm-gem: Use new GEM ioctls for tiling state, and support new swizzle modes. | Eric Anholt | |
2008-07-08 | i965: official name for GM45 chipset | Xiang, Haihao | |
2008-07-02 | set ctx->Const.MaxVertexTextureImageUnits = 0 | Brian Paul | |
This disallows vertex shader texture sampling. See bugs 16157, 13838. | |||
2008-06-26 | intel: Replace sprinkled intel_batchbuffer_flush with MI_FLUSH or nothing. | Eric Anholt | |
Most of these were to ensure that caches got synchronized between 2d (or meta) rendering and later use of the target as a source, such as for texture miptree setup. Those are replaced with intel_batchbuffer_emit_mi_flush(), which just drops an MI_FLUSH. Most of the remainder were to ensure that REFERENCES_CLIPRECTS batchbuffers got flushed before the lock was dropped. Those are now replaced by automatically flushing those when dropping the lock. | |||
2008-06-24 | Merge commit 'origin/master' into drm-gem | Eric Anholt | |
2008-06-24 | i965: Use the shared intel_pixel_copy.c. | Eric Anholt | |
This disables the textured copy implementation on 965, which didn't appear to work (mesa copypix demo, disable the blit path, move so that regions don't overlap and textured is used, and you get garbage). If we resurrect this for i965, I'd rather it used the 915-style metaops instead. Current metaops code left in place so that whoever picks it up has a reference. |