Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-30 | mesa: avoid redundant viewport changes in meta code | Brian Paul | |
2009-08-13 | mesa: refactor: move _mesa_is_color/depth/stencil_format() helpers to image.c | Brian Paul | |
2009-08-11 | mesa: handle glDrawPixels images which are larger than max rect texture size | Brian Paul | |
2009-08-11 | mesa: added _mesa_meta_draw_pixels() | Brian Paul | |
2009-08-11 | mesa: added META_FOG and optimize some meta_begin/end() code | Brian Paul | |
2009-08-10 | mesa: save/restore texture matrix in meta code | Brian Paul | |
Also, save/restore viewport and texture state in _mesa_meta_copy_pixels() | |||
2009-08-10 | mesa: for meta blit, check max texture size, use glCopyTexSubImage2D() when ↵ | Brian Paul | |
possible | |||
2009-08-10 | mesa: initial meta implementation of glCopyPixels() | Brian Paul | |
2009-08-10 | mesa: remove debug flush call | Brian Paul | |
2009-08-10 | mesa: new driver meta-ops module | Brian Paul | |
Implement glClear() in terms of quad rendering, implement glBlitFramebuffer() in terms of glCopyTexImage2D + textured quad, etc. There have been several places in the drivers where we've implemented meta rendering similar to this. This is an effort to do it in a more portable and more efficient form. The _mesa_meta_begin/end() functions act like glPush/PopAttrib() but are lighter-weight. Plus, _mesa_meta_begin() resets GL state back to default values (texturing off, identity vertex transform, etc) so the meta drawing functions don't have to worry about it. For now only _mesa_mesa_blit_framebuffer() and _mesa_meta_clear() are implemented. glDrawPixels() and glCopyPixels() would be the next candidates. |