Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-09-29 | mesa: work-around glXCopyContext() bug in _mesa_copy_texture_state() | Brian Paul | |
See bug 24217. | |||
2009-09-29 | r600: use CB_TARGET_MASK instead of CB_SHADER_MASK for setting color mask | Andre Maasikas | |
makes blend functions work better Signed-off-by: Dave Airlie <airlied@linux.ie> | |||
2009-09-29 | r600: user correct alpha blend factor | Andre Maasikas | |
Signed-off-by: Dave Airlie <airlied@linux.ie> | |||
2009-09-29 | r600: clear position enable bit when when wpos is not used by FP | Andre Maasikas | |
Makes doom3 alot nicer.. | |||
2009-09-28 | mesa: move StoreTexImageFunc typedef to .c file | Brian Paul | |
2009-09-28 | mesa: use _mesa_texstore() | Brian Paul | |
2009-09-28 | st/mesa: use _mesa_texstore() | Brian Paul | |
2009-09-28 | mesa: make individual texstore functions static | Brian Paul | |
2009-09-28 | glide: use _mesa_texstore() | Brian Paul | |
2009-09-28 | drivers: use _mesa_texstore | Brian Paul | |
2009-09-28 | drivers: use new _mesa_texstore() function | Brian Paul | |
2009-09-28 | mesa: new _mesa_texstore() function | Brian Paul | |
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-28 | intel: Remove some dead metaops code. | Eric Anholt | |
2009-09-28 | Prep for 7.6 release | Ian Romanick | |
2009-09-28 | st/mesa: check gl_texture_object::GenerateMipmap field when allocating texmem | Brian Paul | |
In guess_and_alloc_texture() use the gl_texture_object::GenerateMipmap field as another hint as to whether to allocate space for a whole mipmap. | |||
2009-09-28 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
2009-09-28 | Merge branch 'mesa_7_5_branch' into mesa_7_6_branch | Brian Paul | |
2009-09-28 | st/mesa: fix st_generate_mipmap() issues | Brian Paul | |
The main issue is we didn't always have a gallium texture object with enough space to store the to-be-generated mipmap levels. When that's the case, allocate a new gallium texture and use st_texure_finalize() to copy images from the old texture to the new one. We also had the baseLevel parameter to st_render_mipmap() wrong. | |||
2009-09-28 | st/mesa: fix/simplify st_texture_object::lastLevel calculation | Brian Paul | |
Don't compute the st_texture_object::lastLevel field based on the texture filters. Use the _MaxLevel value that core Mesa computes for us. When called from the GenerateMipmap path, we'll use the lastLevel field as-is. | |||
2009-09-28 | mesa: use _mesa_get_current_tex_unit() helper | Brian Paul | |
2009-09-27 | mesa: change _mesa_format_to_type_and_comps() format parameter type | Brian Paul | |
2009-09-27 | mesa: sort texstore_funcs[] array, remove search loop | Brian Paul | |
2009-09-27 | mesa: fix render buffer _BaseFormat assignment | Brian Paul | |
2009-09-27 | mesa: use texture format functions | Brian Paul | |
2009-09-27 | mesa: update comments | Brian Paul | |
2009-09-27 | mesa: use more mesa format functions | Brian Paul | |
2009-09-27 | mesa: fix GL_TEXTURE_LUMINANCE_SIZE query | Brian Paul | |
2009-09-27 | mesa: use more mesa format functions | Brian Paul | |
2009-09-27 | mesa: use more mesa format functions | Brian Paul | |
2009-09-27 | mesa: use more format helper functions | Brian Paul | |
2009-09-27 | mesa: code movement | Brian Paul | |
2009-09-27 | drivers: use more mesa format functions | Brian Paul | |
2009-09-27 | mesa/drivers: use _mesa_get_format_bytes() | Brian Paul | |
2009-09-27 | mesa/drivers: use _mesa_get_format_bytes() | Brian Paul | |
2009-09-27 | via: use mesa texture format helper functions | Brian Paul | |
2009-09-27 | glide: use _mesa_get_format_bytes() | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_format_base_format() | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_format_bytes() | Brian Paul | |
2009-09-27 | mesa: added _mesa_get_format_datatype() | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_format_bits() | Brian Paul | |
2009-09-27 | mesa: added _mesa_get_format_bits() | Brian Paul | |
2009-09-27 | mesa: remove unused gl_texture_format fields | Brian Paul | |
2009-09-27 | mesa: added MESA_FORMAT_NONE | Brian Paul | |
2009-09-27 | mesa: move StoreTexImageFunc to texstore.h | Brian Paul | |
2009-09-27 | mesa: rework null texel fetch/store funcs | Brian Paul | |
2009-09-27 | mesa: replace function pointer types with void * | Brian Paul | |
These fields are no longer used and will be removed soon. | |||
2009-09-27 | st/mesa: use _mesa_get_texstore_func() | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_texstore_func() | Brian Paul | |