Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-08 | r600: recalculate point size, if point min/max size changes | Alex Deucher | |
2010-03-08 | r600: no need to flush on context init | Alex Deucher | |
2010-03-07 | dri/nouveau: Split big client buffers in the indexed case too. | Francisco Jerez | |
2010-03-07 | dri/nouveau: Fix nv[12]x color sum. | Francisco Jerez | |
2010-03-07 | dri/nv04: GL_EXT_secondary_color | Andrew Randrianasulu | |
Signed-off-by: Francisco Jerez <currojerez@riseup.net> | |||
2010-03-07 | dri/nouveau: Trivially add GL_NV_blend_square | Andrew Randrianasulu | |
Signed-off-by: Francisco Jerez <currojerez@riseup.net> | |||
2010-03-07 | dri/nouveau: Check _ColorDrawBuffers[0] before emitting fb state. | Francisco Jerez | |
2010-03-07 | radeon: handle compressed sRGB texture formats | Maciej Cencora | |
2010-03-07 | radeon: move glGetTexImage handlers to seperate file | Maciej Cencora | |
2010-03-07 | radeon: Some possible improvements that I spoted in radeon_tiled_texture branch. | Maciej Cencora | |
2010-03-07 | radeon: properly calculate rowstride for tiled images | Maciej Cencora | |
2010-03-07 | radeon: minor refactoring of mipmap code | Maciej Cencora | |
2010-03-07 | radeon: add texture helper function | Maciej Cencora | |
2010-03-07 | radeon: add some debugging info to sw tiling/untiling functions | Maciej Cencora | |
2010-03-07 | radeon: add software untiling functions | Maciej Cencora | |
2010-03-07 | radeon: add tile size getter | Maciej Cencora | |
2010-03-07 | radeon: added tiling functions | Maciej Cencora | |
2010-03-07 | r300: don't enable EXT_packed_depth_stencil | Maciej Cencora | |
R300 hw doesn't support sampling from Z24_S8 or S8_Z24 formats. | |||
2010-03-07 | radeon: no need to emit full state twice after flush | Maciej Cencora | |
2010-03-07 | r300: allow src and dst BOs to be placed in GTT during blit | Maciej Cencora | |
Fixes some relocation failures | |||
2010-03-07 | r300: reset bos when validating buffers during blit | Maciej Cencora | |
2010-03-07 | radeon: fallback to software in glCopyTexImage if blit isn't available | Maciej Cencora | |
2010-03-07 | r300: VAP flush is needed only when vertex program or constants are changed | Maciej Cencora | |
2010-03-07 | r300: recalculate point size, if point min/max size changes | Maciej Cencora | |
Fixes two wine d3d9 unit tests | |||
2010-03-07 | r300: no need to flush on context init | Maciej Cencora | |
2010-03-07 | r300: remove unnecessary code | Maciej Cencora | |
_tnl_UpdateFixedFunctionProgram is already called in r300_draw.c | |||
2010-03-06 | dri: drop MINIGLX_SOURCES (2) | George Sapountzis | |
2010-03-06 | dri: drop MINIGLX_SOURCES | George Sapountzis | |
2010-03-05 | mesa: bump version to 7.9 | Brian Paul | |
Now that the 7.8 branch has been created Mesa/master will be version 7.9 | |||
2010-03-05 | meta: Use the DrawBuffer's stencil size | Ian Romanick | |
Previously the code was erroneously using the stencil size of the context instead of the stencil size of the DrawBuffer. With FBOs these may be different. As a result, clearing the stencil buffer of an FBO bound to a context that doesn't have stencil would fail. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-05 | swrast: Remove redundant test of the visual's accumulation buffer size | Ian Romanick | |
If the visual doesn't have an accumulation buffer, the renderbuffer passed into _swrast_clear_accum_buffer will be NULL anyway. There is no reason the check the visual. Moreover, the test erroneously checks the context's visual instead of the visual of the current DrawBuffer. With FBOs these may be different. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-05 | swrast: Adjust colors based on ReadBuffer visual, not context visual | Ian Romanick | |
In the presence of FBOs, the visual of the context may not match the, possibly fake, visual of the current ReadBuffer. Note that the caller of adjust_colors correctly uses the visual of the ReadBuffer. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-05 | swrast: Remove stray comment that mentions ctx->Visual | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-05 | i965: Only use the effective subset of the WM sampler key. | Eric Anholt | |
The whole structure is 836 bytes, but if only the first one or two samplers are used (as is common), the part that matters is only 56 or 108 bytes. By using just that subset as the key (since the key size is also part of the key), we improve firefox-talos-gfx performance by 1%. | |||
2010-03-05 | intel: Remove support for the DRI1 TFP extension. | Eric Anholt | |
2010-03-05 | i965: Remove the paths for making a const surface object for a NULL BO. | Eric Anholt | |
2010-03-05 | i965: Remove the unused SDC BO pointer from the sampler state key. | Eric Anholt | |
Since it's a BO pointer, it already lives outside the key in brw->wm.sdc_bo[] which is used for sampler state lookup and setup. | |||
2010-03-05 | i965: Rename SNB brw_*_key structs to gen6_*_key structs. | Eric Anholt | |
2010-03-05 | i965: Pack gen6 blend_state_key structure. | Eric Anholt | |
2010-03-05 | intel: Only do batchbuffer debug if --enable-debug is used. | Eric Anholt | |
This saves 6.6KB on the 965 driver, and appears to speed firefox-talos-gfx up by 1-2%. Unlike many other asserts in the driver, when we make a mistake that would trigger one of these it generally shows up all the time for developers, so turning it off for release seems fine. | |||
2010-03-05 | intel: Replace batch macro contents with function calls. | Eric Anholt | |
This manages to cut down another 3800 bytes. | |||
2010-03-05 | intel: Move the assertions about reloc delta from the macros to the function. | Eric Anholt | |
Cuts another 1800 bytes from the driver. | |||
2010-03-05 | intel: Check that the batch is mapped per BEGIN, not each OUT. | Eric Anholt | |
Shaves 800 bytes off the driver. | |||
2010-03-05 | i965: Try to assign SNB SF inputs to outputs. | Eric Anholt | |
2010-03-05 | i965: Fix the SNB SF input size. | Eric Anholt | |
2010-03-05 | Always return VOLATILE for ObjectPurgeable(VOLATILE) | Chris Wilson | |
Fixes fdo bug 26128. The spec mandates that VOLATILE is returned from ObjectPurgeable(VOLATILE) irrespective of the actual status of the object upon completion of marking it purgeable. Conform to the spec, even though it seems wrong. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> | |||
2010-03-05 | mesa: minor reformatting, new comments | Brian Paul | |
2010-03-05 | mesa: whitespace fixes, 80-column wrapping, etc. | Brian Paul | |
2010-03-05 | Merge branch 'object-purgeable' | Chris Wilson | |
Acked-by: Brian Paul <brianp@vmware.com> | |||
2010-03-05 | APPLE_object_purgeable: intel | Chris Wilson | |
Implement support for purgeable objects by using the GEM madvise ioctl. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> |