summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-09-20intel: meta clear has a new name.Chia-I Wu
It was renamed to _mesa_meta_Clear. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-09-21xorg/st: fixup builds against later dpms headers.Dave Airlie
2009-09-20llvmpipe: Fix lp_get_cached_tile.José Fonseca
Align coordinates to tile boundaries.
2009-09-20llvmpipe: Update tile status on flush.José Fonseca
2009-09-20Merge branch 'mesa_7_6_branch'Brian Paul
Conflicts: src/mesa/drivers/dri/intel/intel_clear.c
2009-09-20Merge branch 'mesa_7_5_branch' into mesa_7_6_branchNicolai Hähnle
2009-09-20mesa/st: Create front renderbuffer on the fly when supplied with a surfaceNicolai Hähnle
Normally, the mesa/st would create a fake front buffer out of a client-allocated surface. In the DRI setting, however, st/dri provides a front buffer surface which is created and maintained by the X server. Prefer to use this surface instead, so that front buffer rendering and reading works correctly. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-09-20mesa/st: Initialize format bits of framebuffer renderbuffersNicolai Hähnle
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-09-20r300/compiler: Fix R300 fragment program regression introduced by 0723cd1...Nicolai Hähnle
We obviously need to move the code addr register backwards because their may be overlap. This bug affected in particular the Compiz water plugin. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-09-19mesa: remove redundant readbuffer checkBrian Paul
2009-09-19mesa: rename functions to be more consistant with rest of mesaBrian Paul
2009-09-19swrast: remove obsolete s_imaging.c fileBrian Paul
2009-09-19swrast: remove prototypes for obsolete functionsBrian Paul
2009-09-19mesa: remove s_imaging.c from buildBrian Paul
2009-09-19windows: replace old ColorTable, Convolution functions with newBrian Paul
2009-09-19mesa: use new meta functionsBrian Paul
2009-09-19mesa: meta functions for glCopyColorTable, glCopyConvolutionFilter, etcBrian Paul
2009-09-19mesa: move readbuffer testsBrian Paul
2009-09-19mesa: use _mesa_get_current_tex_unit() helperBrian Paul
2009-09-19mesa: use _mesa_get_current_tex_unit() helperBrian Paul
2009-09-19mesa: fix some glCopyTex[Sub]Image regressions related to convolutionBrian Paul
2009-09-19mesa: move _mesa_meta_init/free() calls to core MesaBrian Paul
2009-09-19r600: fix point sizesAlex Deucher
registers takes radius
2009-09-19r600: fix polygon offsetAlex Deucher
2009-09-19swrast: remove obsolete s_texstore.cBrian Paul
Replaced by new, simpler meta functions.
2009-09-19swrast: remove prototypes for obsolete functionsBrian Paul
2009-09-19mesa: remove s_texstore.c from makefile/project filesBrian Paul
2009-09-19glapi: replace old TexCopy functions w/ newBrian Paul
2009-09-19windows: replace old TexCopy functions w/ newBrian Paul
2009-09-19gldirect: remove refs to soon-to-be-obsolete functionsBrian Paul
I don't know if this driver is anywhere near build-able, but anyway.
2009-09-19mesa: use new _mesa_meta_CopyTex[Sub]Image() functionsBrian Paul
2009-09-19intel: use new _mesa_meta_CopyTex[Sub]Image() functionsBrian Paul
2009-09-19glapi: regenerated filesBrian Paul
2009-09-19glapi: added tokens, function for GL_ARB_provoking_vertexBrian Paul
2009-09-19llvmpipe: Respect input interpolators for the shader.Michal Krol
Cherry-picked from fb2c7b6743ba6e89f24843890fb7fcd6a09c3dbb
2009-09-19mesa: Allow BlitFramebuffer from a texture.José Fonseca
Although GL_EXT_framebuffer_blit does not mention textures, it doesn't forbid them either, and some thirdparty driver appear to support this.
2009-09-18softpipe: Fix cube face selection.Michal Krol
If arx and ary are equal, we still want to choose from one of them, and not arz.
2009-09-18[i965] add a missing header fileZou Nan hai
2009-09-18 [i965] use intel_batchbuffer_flush to flush the clearZou Nan hai
2009-09-17softpipe: Respect input interpolators for the shader.Michal Krol
2009-09-17tgsi: Scan input interpolators, too.Michal Krol
2009-09-16mesa: begin some texstore code refactoringBrian Paul
Next step will be to move the calls to ctx->Driver.ChooseTextureFormat() into the teximage.c functions so drivers don't have to do it.
2009-09-16mesa: fix clip plane, fog issuesBrian Paul
2009-09-16mesa: meta driver functions for glCopyTex[Sub]Image()Brian Paul
Implement in terms of glReadPixels + glTex[Sub]Image(). This will allow us to get rid of some swrast texture code.
2009-09-16swrast: remove mipmap generation checks (done in core Mesa now)Brian Paul
2009-09-16s3v: remove unneeded initializationsBrian Paul
2009-09-16ffb: remove disabled codeBrian Paul
2009-09-16glx: Use initstate_r / random_r instead of corrupting global random number stateIan Romanick
Previously srandom and random were used. This cause the global random number generator state to be modified. This caused problems for applications that called srandom before calling into GLX. By using local state the global state is left unmodified. This should fix bug #23774.
2009-09-16llvmpipe: Don't assert due to unsupported texture wrap modes.José Fonseca
Issue a warning and fallback to clamping.
2009-09-16st/mesa: fix some incorrect branching/clean-up code in TexImage functionsBrian Paul
We need to be sure to call the _mesa_unmap_teximage_pbo() function if we called _mesa_validate_pbo_teximage().