Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-08 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/i965/brw_wm_emit.c | |||
2010-01-06 | meta: remove F suffix from _mesa_Ortho() params | Brian Paul | |
_mesa_Ortho() takes GLdoubles. | |||
2010-01-06 | meta: move destination vertex/projection setup out of _mesa_meta_GenerateMipmap | Brian Paul | |
Based on a patch submitted by Pierre Willenbrock <pierre@pirsoft.de> | |||
2010-01-06 | meta: set viewport and projection matrix in _mesa_meta_GenerateMipmap | Brian Paul | |
This fixes mipmap levels being clipped to the last viewport. Based on a patch submitted by Pierre Willenbrock <pierre@pirsoft.de> | |||
2010-01-03 | mesa: fix blend enable/disable calls in meta.c code | Francis Galiegue | |
Fixes regression in some DRI drivers since the GL_EXT_draw_buffers2 changes. Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2009-12-29 | mesa: implement per-buffer color masking | Brian Paul | |
This is part of the GL_EXT_draw_buffers2 extension and part of GL 3.0. The ctx->Color.ColorMask field is now a 2-D array. Until drivers are modified to support per-buffer color masking, they can just look at the 0th color mask. The new _mesa_ColorMaskIndexed() function will be called by glColorMaskIndexedEXT() or glColorMaski(). | |||
2009-12-29 | mesa: per-buffer blend enabled flags | Brian Paul | |
ctx->Color.BlendEnabled is now a GLbitfield instead of a GLboolean to indicate blend on/off status for each color/draw buffer. This is infrastructure for GL_EXT_draw_buffers2 and OpenGL 3.x New functions include _mesa_EnableIndexed(), _mesa_DisableIndexed(), and _mesa_IsEnabledIndexed(). The enable function corresponds to glEnableIndexedEXT() for GL_EXT_draw_buffers2 or glEnablei() for GL3. Note that there's quite a few tests for ctx->Color.BlendEnabled != 0 in drivers, etc. Those tests can remain as-is since the mask will be 0 or ~0 unless GL_EXT_draw_buffers2 is enabled. | |||
2009-12-21 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/mesa/main/version.h src/mesa/state_tracker/st_atom_shader.c | |||
2009-12-11 | mesa: remove unused ctx->Driver.ActiveTexture() hook | Brian Paul | |
2009-12-09 | meta: Bind texture to unit 0 for mipmap generation | Ian Romanick | |
If the active texture unit on entry to mipmap generation is not zero, bind the texture to unit zero. Fixes bug #24219. | |||
2009-11-16 | mesa: remove unused vertex array driver hooks | Brian Paul | |
2009-11-02 | mesa: use _mesa_get_current_tex_object() | Brian Paul | |
2009-10-28 | Merge branch 'texformat-rework' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/radeon/radeon_fbo.c src/mesa/drivers/dri/s3v/s3v_tex.c src/mesa/drivers/dri/s3v/s3v_xmesa.c src/mesa/drivers/dri/trident/trident_context.c src/mesa/main/debug.c src/mesa/main/mipmap.c src/mesa/main/texformat.c src/mesa/main/texgetimage.c | |||
2009-10-27 | mesa: s/Bilt/Blit | Brian Paul | |
2009-10-24 | mesa: remove ctx->Driver.CompressedTextureSize() hook | Brian Paul | |
It always just called _mesa_compressed_texture_size() anyway. | |||
2009-10-20 | meta: Fix the BufferSubData in meta clear to be BufferData. | Eric Anholt | |
Fixes a 3.4% +/- 1.3% performance regression in my GL demo (n=3). The other meta code could probably also use the same treatment. | |||
2009-10-14 | mesa: remove unused ctx->Driver.PrioritizeTextures() hook | Brian Paul | |
2009-10-14 | mesa: remove unused ctx->Driver.TextureMatrix() hook | Brian Paul | |
2009-10-14 | mesa: remove left-over debug printf | Brian Paul | |
2009-10-13 | mesa: whitespace fixes | Brian Paul | |
2009-10-13 | mesa: do RTT check in _mesa_meta_check_generate_mipmap_fallback() | Brian Paul | |
We need to check that we can actually render to the texture's format before doing mipmap generation. This may fix bug 24219. | |||
2009-10-12 | mesa: save/set/restore texture base/wrap state in blitframebuffer_texture() | Brian Paul | |
2009-10-08 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/common/meta.c | |||
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-03 | meta: Make sure texImage->TexFormat is valid for CopyTex(Sub)Image. | Michel Dänzer | |
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 | mesa: added _mesa_meta_check_generate_mipmap_fallback() | Brian Paul | |
2009-09-30 | mesa: replace gl_texture_format with gl_format | Brian Paul | |
Now gl_texture_image::TexFormat is a simple MESA_FORMAT_x enum. ctx->Driver.ChooseTexture format also returns a MESA_FORMAT_x. gl_texture_format will go away next. | |||
2009-09-28 | meta: Fix invalid PBO access from DrawPixels when trying to just alloc. | Eric Anholt | |
This whole reuse of buffers (TexSubImage instead of TexImage, SubData instead of Data) is bad for hardware drivers, but it's even worse when we accidentally try to access the 2x2 PBO to fill the new 16x16 texture we're creating, producing GL errors. Fixes piglit pbo-drawpixels. Bug #14163. | |||
2009-09-28 | intel: Drop my generatemipmap code in favor of the new shared code. | Eric Anholt | |
2009-09-27 | mesa: use _mesa_get_format_base_format() | Brian Paul | |
2009-09-24 | mesa: _mesa_meta_GenerateMipmap() now working | Brian Paul | |
Handles GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP. But GL_TEXTURE_3D and texture borders not supported yet. | |||
2009-09-22 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
2009-09-22 | mesa: don't re-use the meta glDrawPixels VBO; create a new one each time | Brian Paul | |
This should help to work around bugs 24083 and 23670. | |||
2009-09-20 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/intel/intel_clear.c | |||
2009-09-19 | mesa: remove redundant readbuffer check | Brian Paul | |
2009-09-19 | mesa: rename functions to be more consistant with rest of mesa | Brian Paul | |
2009-09-19 | mesa: use new meta functions | Brian Paul | |
2009-09-19 | mesa: meta functions for glCopyColorTable, glCopyConvolutionFilter, etc | Brian Paul | |
2009-09-19 | mesa: fix some glCopyTex[Sub]Image regressions related to convolution | Brian Paul | |
2009-09-19 | mesa: use new _mesa_meta_CopyTex[Sub]Image() functions | Brian Paul | |
2009-09-16 | mesa: fix clip plane, fog issues | Brian Paul | |
2009-09-16 | mesa: 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-15 | mesa: remove incorrect texture state check | Brian Paul | |
Fixes incorrectly textured bitmap text in engine demo. It's incorrect to test the texture enable bits here since they may have been changed by disabling the shader above. Optimization is still possible but will have to be reexamined. | |||
2009-09-10 | mesa: nicer vertex setup | Brian Paul | |
2009-09-10 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
2009-09-10 | mesa: need to set all stencil bits to 0 before setting the 1 bits | Brian Paul | |
Plus, check for pixel transfer stencil index/offset. | |||
2009-09-10 | mesa: fix cut&paste typos | Mathias Frohlich | |
2009-09-09 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
2009-09-09 | mesa: disable GL_LUMINANCE case in _mesa_meta_draw_pixels() | Brian Paul | |
Works around a bug found on i965. See bug 23670. |