Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | radeon: move device param id check ifndef | Dave Airlie | 2009-02-18 | 1 | -3/+4 |
| | |||||
* | radeon: initialise swapped objects pointer | Dave Airlie | 2009-02-17 | 1 | -0/+2 |
| | |||||
* | radeon: legacy texMem interface fixups. | Dave Airlie | 2009-02-17 | 1 | -20/+28 |
| | | | | | The texmem.c interface is wildly messed up it really wants to own the objects so let it, pain in the ass but this code should work a lot better now | ||||
* | Revert "dri/radeon: export a function to cleanup a texture object." | Dave Airlie | 2009-02-17 | 3 | -17/+4 |
| | | | | This reverts commit 5325f8624093bb1ec30d581b4ff64218ceab99f9. | ||||
* | radeon/r200: drop legacy texture heap code | Dave Airlie | 2009-02-17 | 3 | -107/+0 |
| | |||||
* | radeon/r200: fixup texturing aging calls | Dave Airlie | 2009-02-17 | 2 | -6/+4 |
| | |||||
* | radeon: fixup destroy texture object exit path and update LRU | Dave Airlie | 2009-02-17 | 1 | -3/+10 |
| | | | | | the destroy path was doing bad things with structure names, make it do less bad things, use container_of instead | ||||
* | radeon: remove leftover debug | Dave Airlie | 2009-02-17 | 1 | -1/+0 |
| | |||||
* | radeon/r200: drop dirty state from texture object + pp_txoffset | Dave Airlie | 2009-02-17 | 7 | -58/+10 |
| | | | | this is just more code cleanup for old dead code | ||||
* | r200: align with r100 code | Dave Airlie | 2009-02-17 | 1 | -3/+2 |
| | |||||
* | radeon: fix not emitting texture state correctly | Dave Airlie | 2009-02-17 | 1 | -0/+2 |
| | | | | | this is whole texture dirty bit is probably not needed with the current codebase, need to revisit | ||||
* | radeon: steal miptree optimisation from intel codebase | Dave Airlie | 2009-02-17 | 1 | -0/+10 |
| | | | | This replaces a miptree if it won't distrub anything else. | ||||
* | radeon: move YUV on first texunit check after hw state is setup | Dave Airlie | 2009-02-17 | 1 | -5/+4 |
| | |||||
* | dri/radeon: export a function to cleanup a texture object. | Dave Airlie | 2009-02-17 | 3 | -4/+17 |
| | | | | | The radeon legacy code want to cleanup not free the texture obj, so export a function to do that and wrap it. | ||||
* | radeon: fix texcompress2 test. | Dave Airlie | 2009-02-16 | 1 | -34/+53 |
| | | | | this makes compressed subimages work properly. | ||||
* | radeon: fix compressed tex subimage unpack parameter | Dave Airlie | 2009-02-16 | 1 | -1/+1 |
| | |||||
* | radeon: add cflags to decide whether to link libdrm_radeon or not. | Dave Airlie | 2009-02-15 | 3 | -3/+9 |
| | | | | | You don't need libdrm_radeon for the legacy driver to build, only for the experimental mm/cs paths. | ||||
* | radeon-common: Fix crash in glGetTexImage | Nicolai Haehnle | 2009-02-14 | 5 | -0/+69 |
| | | | | | | | | | | | | Since texture images are now stored in miptrees, we cannot usually access them directly via the Data pointer. So we wrap Mesa's implementation by map/unmap calls. This crash was triggered by Sauerbraten, Piglit now contains a regression test. Signed-off-by: Nicolai Haehnle <[email protected]> | ||||
* | r300: Fix crash in cubemap tree creation | Nicolai Haehnle | 2009-02-14 | 1 | -6/+20 |
| | | | | | | | | | The mip tree creation would crash if the first baselevel image to be uploaded was not the positive-x image. Found with Sauerbraten, also added a regression test to Piglit. Signed-off-by: Nicolai Haehnle <[email protected]> | ||||
* | r300: Redirect constant TEX coordinates | Nicolai Haehnle | 2009-02-14 | 2 | -0/+32 |
| | | | | | | | | | | | | | R3xx/R5xx fragment program texture constants must come from a hardware register instead of the constant file, so we redirect if necessary during the native rewrite phase. The symptoms of this bug started appearing when the Mesa fixed function texenvprogram code started using STATE_CURRENT_ATTRIB constants for texture coordinates when the corresponding attributes were constant across all vertices. Signed-off-by: Nicolai Haehnle <[email protected]> | ||||
* | r300: Fix R300_CMD_SCRATCH on big endian. | Michel Dänzer | 2009-02-14 | 2 | -2/+11 |
| | |||||
* | radeon: remove unused radeon_compat.c | Dave Airlie | 2009-02-14 | 1 | -301/+0 |
| | |||||
* | r200: fixup cube emit debug | Dave Airlie | 2009-02-14 | 1 | -2/+1 |
| | |||||
* | r200: fix another cmdbuf sizing issue | Dave Airlie | 2009-02-14 | 1 | -1/+1 |
| | |||||
* | radeon: check for valid bo in release arrays | Dave Airlie | 2009-02-14 | 1 | -2/+4 |
| | |||||
* | radeon: remove old cube code | Dave Airlie | 2009-02-14 | 1 | -12/+1 |
| | |||||
* | radeon/r300: fix warnings | Dave Airlie | 2009-02-14 | 3 | -3/+4 |
| | |||||
* | radeon: add initial cubemap support appears to work | Dave Airlie | 2009-02-14 | 1 | -1/+39 |
| | |||||
* | radeon/r200: make setTexOffset work again | Dave Airlie | 2009-02-13 | 4 | -6/+8 |
| | |||||
* | radeon/r200: fix set tex offset functions | Dave Airlie | 2009-02-13 | 2 | -6/+2 |
| | |||||
* | radeon: revert unneeded change to texturing code | Dave Airlie | 2009-02-13 | 1 | -3/+8 |
| | |||||
* | radeon: fix compressed texture upload on all radeons | Dave Airlie | 2009-02-13 | 2 | -22/+75 |
| | | | | tested on r200, texcmp works. May need more verification | ||||
* | r200: update with changes from r100 driver for texture state | Dave Airlie | 2009-02-13 | 1 | -2/+44 |
| | |||||
* | r200: port over state emit fix from r100 | Dave Airlie | 2009-02-13 | 1 | -2/+4 |
| | |||||
* | r200: fixup some CS emission sizes | Dave Airlie | 2009-02-13 | 3 | -2/+3 |
| | |||||
* | r200: use correct finish interface | Dave Airlie | 2009-02-13 | 5 | -6/+4 |
| | |||||
* | radeon: fixup include ordering | Dave Airlie | 2009-02-13 | 2 | -4/+4 |
| | |||||
* | Merge remote branch 'origin/master' into radeon-rewrite | Dave Airlie | 2009-02-13 | 166 | -4183/+6200 |
|\ | | | | | | | | | | | | | Conflicts: configure.ac src/mesa/drivers/dri/r200/r200_context.c src/mesa/drivers/dri/r300/r300_render.c | ||||
| * | Fix an i965 assertion failure on glClear() | Robert Ellison | 2009-02-11 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While running conform with render-to-texture: conform -d 33 -v 2 -t -direct the i965 driver failed this assertion: intel_clear.c:77: intel_clear_tris: Assertion `(mask & ~((1 << BUFFER_BACK_LEFT) | (1 << BUFFER_FRONT_LEFT) | (1 << BUFFER_DEPTH) | (1 << BUFFER_STENCIL))) == 0' failed. The problem is that intel_clear_tris() is called by intelClear() to clear any and all of the available color buffers, but intel_clear_tris() actually only handles the back left and front left color buffers; so the assertion fails as soon as you try to clear a non-standard color buffer. The fix is to have intelClear() only call intel_clear_tris() with buffers that intel_clear_tris() can support. intelClear() already backs down to _swrast_Clear() for all buffers that aren't handled explicitly. | ||||
| * | intel: Add x8r8g8b8 visuals to DRI1 fbconfigs alongside a8r8gb8. | Eric Anholt | 2009-02-10 | 5 | -42/+54 |
| | | | | | | | | | | This involved fixing driConcatConfigs to not return const (which had made a mess of a previous patch too). | ||||
| * | sis: fix signedness warnings | Eric Anholt | 2009-02-10 | 2 | -5/+5 |
| | | |||||
| * | trident: Fix signedness warning. | Eric Anholt | 2009-02-10 | 1 | -1/+1 |
| | | |||||
| * | tdfx: Fix begin/endquery for current API. | Eric Anholt | 2009-02-10 | 1 | -4/+4 |
| | | |||||
| * | intel: Don't do the extra MI_FLUSH in flushing except when doing glFlush(). | Eric Anholt | 2009-02-10 | 1 | -5/+17 |
| | | | | | | | | | | Everything other than "make sure the last rendering ends up visible on the screen" doesn't need that behavior. | ||||
| * | intel: Speed up glDrawPixels(GL_ALPHA) by using an alpha texture format. | Eric Anholt | 2009-02-10 | 1 | -5/+6 |
| | | |||||
| * | intel: Fix some state leakage of {Client,}ActiveTexture in metaops. | Eric Anholt | 2009-02-10 | 2 | -0/+10 |
| | | | | | | | | Found while debugging cairo-gl. | ||||
| * | intel: don't crash when dri2 tells us about buffers we don't care about. | Eric Anholt | 2009-02-10 | 1 | -0/+3 |
| | | |||||
| * | Merge commit 'origin/gallium-master-merge' | Brian Paul | 2009-02-10 | 18 | -126/+272 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the big merge of the gallium-0.2 branch into master. gallium-master-merge was just the staging area for it. Both gallium-0.2 and gallium-master-merge are considered closed now. Conflicts: progs/demos/Makefile src/mesa/main/state.c src/mesa/main/texenvprogram.c | ||||
| | * | gallium: Fixups for driCreateConfigs MSAA support. | Michel Dänzer | 2009-02-10 | 12 | -3/+28 |
| | | | | | | | | | | | | Add the MSAA samples array or make sure its contents are initialized. | ||||
| | * | re-add MSAA support | Brian Paul | 2009-02-09 | 11 | -34/+56 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit f7d80aa00611917bc8ce637136d982b151b8f44f) This also involved adding the new MSAA fields to driCreateConfigs(). Also, re-add prog_instructions->Sampler field for i965 driver. Will have to revisit that. |