Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2009-09-27 | glide: use _mesa_get_texstore_func() | Brian Paul | |
2009-09-27 | mesa: NULL-out unused texformat field initializers | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_texstore_func() | Brian Paul | |
2009-09-27 | st/mesa: use _mesa_get_texstore_func() | Brian Paul | |
2009-09-27 | mesa: null-out StoreTexImageFunc fields | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_texel_store_func() | Brian Paul | |
2009-09-27 | mesa: use new look-up table to get texel fetch/store funcs | Brian Paul | |
2009-09-27 | mesa: make some s3tc/fxt1 functions public | Brian Paul | |
2009-09-27 | mesa: minor clean-up in _mesa_texstore_srgb8() | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_texstore_func() to get texture image store func | Brian Paul | |
2009-09-26 | mesa: move _mesa_get_texstore_func() to texstore.c | Brian Paul | |
2009-09-26 | mesa: begin removing dependencies on gl_texture_format in texstore code | Brian Paul | |
2009-09-26 | mesa: added formats.c to build | Brian Paul | |
2009-09-26 | mesa: include formats.h | Brian Paul | |
2009-09-26 | mesa: initial check-in of new formats.[ch] files | Brian Paul | |
2009-09-25 | Merge branch 'asm-shader-rework-2' | Ian Romanick | |
Conflicts: src/mesa/shader/program_parse.tab.c | |||
2009-09-25 | radeon: Fix newlines. | Michal Krol | |
2009-09-25 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/intel/intel_clear.c | |||
2009-09-25 | mesa: move declaration before code | Vinson Lee | |
2009-09-24 | mesa/main: Make FEATURE_convolve follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of convolve.h to work without knowing if the feature is available. | |||
2009-09-24 | mesa/main: Make FEATURE_colortable follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of colortab.h to work without knowing if the feature is available. | |||
2009-09-24 | mesa/main: Make FEATURE_pixel_transfer follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of pixel.h to work without knowing if the feature is available. | |||
2009-09-24 | mesa/main: Add comments to mfeatures.h. | Chia-I Wu | |
The comments document the conventions that a feature may follow. | |||
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-24 | mesa: remove: unused gl_vertex_program::TnlData field | Brian Paul | |
2009-09-24 | NV fp lexer: Add UP4B and UP4UB instructions that were previously missing | Ian Romanick | |
2009-09-24 | intel: Flush the batch when we're about to subdata into a VBO. | Eric Anholt | |
This fixes the clears in openarena with the new metaops clear code, and the new piglit vbo-subdata-sync test. Bug #23857. | |||
2009-09-24 | i965: Clean up some mess with the batch cache. | Eric Anholt | |
Its flagging of extra state that's already flagged by the vtbl new_batch when appropriate was confusing my tracking down of the OA clear bug. | |||
2009-09-24 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/mesa/vbo/vbo_exec_array.c | |||
2009-09-24 | Merge branch 'mesa_7_5_branch' into mesa_7_6_branch | Brian Paul | |
2009-09-24 | i965: Emit zero initialization for NV VP temporaries as required. | Eric Anholt | |
This is similar to what r300 does inside the driver, but I've added it as a generic option since it seems most hardware will want it. Fixes piglit nv-init-zero-reg.vpfp and nv-init-zero-addr.vpfp. |