Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-01 | mesa: reformatting | Brian Paul | |
2009-10-01 | mesa: move mesa_set_fetch_functions() | Brian Paul | |
2009-10-01 | mesa: simplify _mesa_compressed_texture_size() | Brian Paul | |
2009-10-01 | mesa: remove gl_texture_image::IsCompressed field | Brian Paul | |
Use _mesa_is_format_compressed() instead. | |||
2009-10-01 | mesa: added _mesa_format_row_stride() | Brian Paul | |
2009-10-01 | mesa: added _mesa_format_image_size() | Brian Paul | |
2009-10-01 | mesa: fix memory leak when generating mipmaps for compressed textures | Brian Paul | |
2009-10-01 | mesa: add missing return when out of memory | Brian Paul | |
2009-10-01 | mesa: fix potential uninitialized memory reads | Brian Paul | |
2009-10-01 | mesa: better debug message | Brian Paul | |
2009-09-30 | mesa: rename texformat_tmp.h to texfetch_tmp.h | Brian Paul | |
2009-09-30 | mesa: remove MESA_FORMAT_RGBA4444 | Brian Paul | |
Not used by any hardware driver. ARGB4444 and ARGB4444_REV remain. | |||
2009-09-30 | mesa: remove GLchan-based formats; use hw 8-bit/channel formats instead | Brian Paul | |
Removed: MESA_FORMAT_RGBA, RGB, ALPHA, LUMINANCE, LUMINANCE_ALPHA, INTENSITY. | |||
2009-09-30 | mesa: move texel fetch/store into new texfetch.[ch] files | Brian Paul | |
2009-09-30 | mesa: remove gl_texture_format | 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-30 | mesa/main: New feature FEATURE_beginend. | Chia-I Wu | |
This feature corresponds to the Begin/End paradigm. Disabling this feature also eliminates the use of GLvertexformat completely. | |||
2009-09-30 | mesa/main: Make FEATURE_dlist follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of dlist.h to work without knowing if the feature is available. | |||
2009-09-30 | mesa/main: Make FEATURE_evaluators follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of eval.h to work without knowing if the feature is available. | |||
2009-09-30 | mesa/main: New feature FEATURE_queryobj. | Chia-I Wu | |
It merges FEATURE_ARB_occlusion_query and FEATURE_EXT_timer_query, and follows the feature conventions. | |||
2009-09-30 | mesa/main: New feature FEATURE_arrayelt. | Chia-I Wu | |
This allows the removal of AEcontext. | |||
2009-09-30 | mesa/main: Make FEATURE_texgen follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of texgen.h to work without knowing if the feature is available. | |||
2009-09-30 | mesa/main: Make FEATURE_feedback follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of feedback.h to work without knowing if the feature is available. | |||
2009-09-30 | mesa/main: Make FEATURE_drawpix follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of drawpix.h to work without knowing if the feature is available. | |||
2009-09-30 | mesa/main: New feature FEATURE_rastpos. | Chia-I Wu | |
It is separated from FEATURE_drawpix and made to follow the feature conventions. | |||
2009-09-30 | mesa/main: Make FEATURE_histogram follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of histogram.h to work without knowing if the feature is available. | |||
2009-09-30 | mesa/main: Make FEATURE_attrib_stack follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of attrib.h to work without knowing if the feature is available. | |||
2009-09-30 | mesa/main: Make FEATURE_accum follow feature conventions. | Chia-I Wu | |
As shown in mfeatures.h, this allows users of accum.h to work without knowing if the feature is available. | |||
2009-09-29 | mesa: added nopfrag/nopvert options for MESA_GLSL | Brian Paul | |
These options can be used to force vertex/fragment shaders to be no-op shaders (actually, simple pass-through shaders). For debug/test purposes. | |||
2009-09-29 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: Makefile configs/default docs/relnotes.html src/gallium/drivers/softpipe/sp_context.c src/gallium/drivers/softpipe/sp_tile_cache.c src/mesa/main/version.h | |||
2009-09-29 | mesa: bump version to 7.6.1 | Brian Paul | |
2009-09-29 | mesa: work-around glXCopyContext() bug in _mesa_copy_texture_state() | Brian Paul | |
See bug 24217. | |||
2009-09-28 | mesa: move StoreTexImageFunc typedef to .c file | Brian Paul | |
2009-09-28 | mesa: use _mesa_texstore() | Brian Paul | |
2009-09-28 | mesa: make individual texstore functions static | Brian Paul | |
2009-09-28 | mesa: new _mesa_texstore() function | Brian Paul | |
2009-09-28 | Prep for 7.6 release | Ian Romanick | |
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: 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 | mesa: use _mesa_get_format_bytes() | Brian Paul | |
2009-09-27 | mesa: added _mesa_get_format_datatype() | Brian Paul | |