Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-12 | r600: implement ProgramStringNotify | Andre Maasikas | |
need this to properly test with piglit/glean vert/fragprog tests copied mostly from r300, many thanks to osiris, nha, airlied, others... | |||
2009-10-12 | r600: LIT dst.y gets value from src.x | Andre Maasikas | |
seems I overlooked this when removing hardcoded swizzles for this one previously | |||
2009-10-12 | r600: DPH adds w comp of second operand, so set first one to 1 instead | Andre Maasikas | |
2009-10-10 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
2009-10-09 | radeon: fix scissor regression | Alex Deucher | |
fixes fdo bug 24248 | |||
2009-10-09 | r600: fixup KIL instruction a bit | Andre Maasikas | |
- KILLGT takes 2 arguments - arb KIL has no dst register - add TODO about clause ending but currently piglit fp-kil passes and does not hang the card | |||
2009-10-08 | i965: Use bo_references for the state cache delete function. | Eric Anholt | |
This appears to shave about 3% off the CPU usage in cairo-gl for firefox. | |||
2009-10-08 | intel: Use new drm_intel_bo_references() to avoid flushing. | Eric Anholt | |
2009-10-08 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/common/meta.c | |||
2009-10-07 | mesa/xlib: call XQueryExtension() in glXQueryExtension() | Brian Paul | |
See bug 24321. | |||
2009-10-07 | mesa: don't need to free textures, VBOs, etc. in _mesa_meta_free() | Brian Paul | |
They're freed by the normal context deallocation code. Fixes Blender crash, bug 24185. | |||
2009-10-07 | r300compiler: fix scons build again | Joakim Sindholt | |
2009-10-07 | Merge branch 'master' into r300g-glsl | Nicolai Hähnle | |
Conflicts: src/gallium/drivers/r300/r300_tgsi_to_rc.c Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-07 | Merge branch 'mesa_7_6_branch' | Nicolai Hähnle | |
2009-10-07 | mesa/xlib: fix glXQueryDrawable() bugs, see bug 24320 | Brian Paul | |
2009-10-07 | mesa/xlib: return 0 for errorBase, eventBase in glXQueryExtension() | Brian Paul | |
A little better than leaving the values undefined, I think. See bug 24321. | |||
2009-10-06 | r300/compiler: Fix R300 vertex program dumps | Nicolai Hähnle | |
The source register field has 8 bits. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-06 | r300/compiler: Fix yet another regression in register allocation | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-06 | r300/compiler: Fix a really stupid logic inversion in the generic dataflow code | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-06 | r300/compiler: Fix regression in pair scheduling | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-06 | r600: r700PredictRenderSize can flush, so move index buffer setup after it | Andre Maasikas | |
2009-10-05 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/gallium/auxiliary/util/u_cpu_detect.c | |||
2009-10-05 | intel: use driReadDrawable in do_copy_texsubimage() | Brian Paul | |
2009-10-05 | intel: use driReadDrawable, not driDrawable in do_blit_readpixels() | Brian Paul | |
2009-10-05 | intel: remove a buffer equality test in _mesa_make_current() | Brian Paul | |
Before, if we called glXMakeCurrent() to change a context's window binding while an FBO was bound, we weren't updating the intel->driDrawable and intel->driReadDrawable fields. This could cause us to dereference a null pointer elsewhere. | |||
2009-10-05 | r300g: fix scons build | Joakim Sindholt | |
So I didn't touch r300compiler, but r300g now compiles after having declarations and code untangled. As nha so gently points out, we shouldn't have to do this just to comply with MSVC compilers. | |||
2009-10-05 | r600: update vertex program selection for draw path | Andre Maasikas | |
2009-10-04 | r200: remove subpixel offset from viewport | Frederic Crozat | |
Fixes bug fdo 20340 for r200. | |||
2009-10-04 | r300/compiler Add support for more of the Sxx set instructions | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-04 | r300/compiler: Emit flow control instructions and ALU result writes on R500 | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-04 | r300/compiler: Refactor the radeon_pair code to support control flow ↵ | Nicolai Hähnle | |
instructions Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-04 | r300/compiler: Refactor to allow different instruction types | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-04 | r300/compiler: Introduce aluresult register for branch operation support | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-03 | intel: Suppress a compiler warning for an pointer->int cast | Chris Wilson | |
intel_pixel_read.c: In function ‘do_blit_readpixels’: intel_pixel_read.c:221: warning: cast from pointer to integer of different size Cast via an intermediate (GLintptr) instead and hope the result fits within GLuint... [It should as we simply do not support textures *that* large!] Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> | |||
2009-10-03 | intel: Assert that relocation offsets are within the target | Chris Wilson | |
This should catch the common programming error where we attempt to emit a relocation to beyond the end of the target buffer. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> | |||
2009-10-03 | r300/compiler: Introduce control flow instructions and refactor dataflow | Nicolai Hähnle | |
Note that control flow instruction support isn't actually fully functional yet. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-03 | Merge branch 'master' into r300-compiler | Nicolai Hähnle | |
2009-10-03 | radeon: Cope better with texture images with no miptrees. | Michel Dänzer | |
Fixes crash with compiz magnifier plugin. | |||
2009-10-03 | meta: Make sure texImage->TexFormat is valid for CopyTex(Sub)Image. | Michel Dänzer | |
2009-10-03 | r300: Workaround problem on R500 with very large fragment programs | Nicolai Hähnle | |
The non-KMS interface is to blame here. In theory, a proper fix could be produced that works for the KMS interface only, but it require cleaning a lot of mess. Easier to just do it right in r300g. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-02 | mesa: optimized _mesa_meta_BlitFramebuffer() for src=texture case | Brian Paul | |
If the src renderbuffer is actually a texture, we can directly use that texture as the src and avoid a copy. | |||
2009-10-02 | i965: Use a little stack space to avoid a malloc in wm_get_binding_table. | Eric Anholt | |
2009-10-02 | intel: Remove an unexplained flush from intelClearWithBlit. | Eric Anholt | |
2009-10-02 | r600: remove support for host-based ibs | Alex Deucher | |
no longer used now that the hw supports this natively. Also, clean up some formatting. | |||
2009-10-02 | intel: wrap _mesa_meta_GenerateMipmap() | Brian Paul | |
Need to check if we'll take the software path so which requires mapping the src texture image. Fixes crash in piglit gen-compressed-teximage, bug 24219. However, the test still does not pass (it may never have). | |||
2009-10-02 | mesa: added _mesa_meta_check_generate_mipmap_fallback() | Brian Paul | |
2009-10-02 | xlib: use bitwise-and to test GLX_RGBA_BIT in choose_visual() | Brian Paul | |
The parameter is a bitmask. | |||
2009-10-01 | i915: Add stub ARB_occlusion_query support under a driconf debug option. | Eric Anholt | |
This is useful for enabling our GLSL testcases using the 2.0 entrypoints even though we don't have full GL 2.0. | |||
2009-10-01 | i915: Add optional support for ARB_fragment_shader under a driconf option. | Eric Anholt | |
Other vendors have enabled ARB_fragment_shader as part of OpenGL 2.0 enablement even on hardware like the 915 with no dynamic branching or dFdx/dFdy support. But for now we'll leave it disabled because we don't do any flattening of ifs or loops, which is rather restrictive. This support is not complete, and may be unstable depending on your shaders. It passes 10/15 of the piglit glsl tests, but hangs on glean glsl1. | |||
2009-10-01 | i915: Add support or fallbacks for GLSL fragment shader opcodes. | Eric Anholt | |