Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-04 | mesa: Add asserts to check inputs to memcpy. | Vinson Lee | |
2010-03-03 | Fix unmatched parenthesis introduce by previous commits | Ian Romanick | |
I wasn't careful enough when removing support for GCC versions earlier than 3.3.0. I could have sworn that I compile tested before pushing, but apparently not. FAIL. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | Remove support for GCC older than 3.3.0 | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | mesa: Remove unused RasterIndex field | Ian Romanick | |
With the preceeding changes, gl_current_attrib::RasterIndex is not used. Remove it. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | mesa: Always return default value for CURRENT_RASTER_INDEX | Ian Romanick | |
Since there is no color-index rendering, it is impossible to update this value. Just return the initial setting and be happy. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | mesa: Eliminate index parameter to _mesa_feedback_vertex | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | mesa: Remove ClearIndex and IndexMask from device-driver interface | Ian Romanick | |
These are used to inform the driver of the clear value for color-index buffers and to control write-masking of bits in color-index buffers. No driver use or need (not even Nouveau) these interfaces. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | mesa: Remove _mesa_add_color_index_renderbuffers | Ian Romanick | |
After all the recent color-index visual support removal, _mesa_add_color_index_renderbuffers is no longer used anywhere. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | mesa: Remove checks of Visual.rgbMode in Get paths | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | mesa: Remove checks of Visual.rgbMode | Ian Romanick | |
This must always be true now, so there is no reason to check it. Ever. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-03 | mesa: Remove support for creating color-index visuals | Ian Romanick | |
Remove the rgbMode and indexBits parameters from _mesa_create_visual and _mesa_initialize_visual. These values are now hardcoded to GL_TRUE and 0. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-02 | mesa: Add asserts to check inputs to memcpy. | Vinson Lee | |
2010-02-27 | mesa: Add asserts to check inputs to memcpy. | Vinson Lee | |
2010-02-27 | mesa: Add assert to check input to memcpy is not null. | Vinson Lee | |
2010-02-26 | mesa: Remove unnecessary header. | Vinson Lee | |
2010-02-26 | Set API dispatch pointers for OES_EGL_image functions | Kristian Høgsberg | |
This chunk fell through the cracks when I rebase the EGLImage patch series. | |||
2010-02-26 | mesa: fix _BaseFormat assignment in _mesa_soft_renderbuffer_storage() | Brian Paul | |
The rb->InternalFormat field will be set by the caller if the allocation succeeds. Until then, this field's value can't be used. Fixes a failed assertion with FlightGear. | |||
2010-02-25 | mesa: enable GL_EXT_texture_array for sw drivers | Brian Paul | |
2010-02-25 | mesa: added new extension flag for GL_EXT_texture_array | Brian Paul | |
2010-02-25 | mesa: remove redundant call to _mesa_base_fbo_format() | Brian Paul | |
2010-02-25 | mesa: added renderbuffer->_BaseFormat assertion | Brian Paul | |
2010-02-26 | drop stray src/mesa/main/sources | George Sapountzis | |
2010-02-25 | mesa: use simplified _BaseFormat value in render-to-texture code | Brian Paul | |
Fixes fd.o bug 26762. | |||
2010-02-25 | mesa: Move src/mesa/glapi/dispatch.h to mesa. | Chia-I Wu | |
glapi/dispatch.h is a core Mesa header file. Move the header file to main/ to make this clear. It also becomes clear after this change that IN_DRI_DRIVER is only used in core Mesa to enable the remap table. | |||
2010-02-25 | glapi: Move src/mesa/main/dispatch.c to glapi and rename. | Chia-I Wu | |
main/dispatch.c is a glapi source file. It is part of GLAPI_SOURCES in sources.mak and part of glapi_sources in SConscript. This commit moves it to glapi/ and renames it to glapi_dispatch.c. | |||
2010-02-25 | mesa: Remove unused Makefile.{ugl,win}. | Chia-I Wu | |
2010-02-25 | mesa: Remove dead error condition. | Vinson Lee | |
2010-02-24 | mesa: Fix SCons build. | Vinson Lee | |
2010-02-24 | mesa: put declaration before code | Brian Paul | |
2010-02-24 | core: Implement GL_OES_EGL_image entry points | Kristian Høgsberg | |
2010-02-24 | glapi: GL_OES_EGL_image autogenerated files | Kristian Høgsberg | |
2010-02-23 | mesa: Assert that array index is not negative. | Vinson Lee | |
2010-02-21 | mesa: Add assert to check for null pointer dereference. | Vinson Lee | |
2010-02-19 | mesa: restore _mesa_snprintf() - it's needed for Windows | Brian Paul | |
This reverts part of commit 298be2b028263b2c343a707662c6fbfa18293cb2 | |||
2010-02-19 | mesa: casts to silence new warnings from printf() | Brian Paul | |
2010-02-19 | Drop macro wrappers for the aligned memory functions | Kristian Høgsberg | |
2010-02-19 | Replace the _mesa_*printf() wrappers with the plain libc versions | Kristian Høgsberg | |
2010-02-19 | Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versions | Kristian Høgsberg | |
2010-02-19 | mesa: replace _mesa_bzero() with memset() | Brian Paul | |
2010-02-19 | mesa: replace old MEMSET macro with memset | Brian Paul | |
2010-02-19 | mesa: replace old MEMCPY macro with memcpy | Brian Paul | |
2010-02-19 | Remove _mesa_memcmp in favor of plain memcmp. | Kenneth Graunke | |
This may break the SUNOS4 build, but it's no longer relevant. | |||
2010-02-19 | Remove _mesa_memset in favor of plain memset. | Kenneth Graunke | |
This may break the SUNOS4 build, but it's no longer relevant. | |||
2010-02-19 | Remove _mesa_memcpy in favor of plain memcpy. | Kenneth Graunke | |
This may break the SUNOS4 build, but it's no longer relevant. | |||
2010-02-19 | Remove _mesa_atoi in favor of plain atoi. | Kenneth Graunke | |
2010-02-19 | Remove _mesa_strncmp in favor of plain strncmp. | Kenneth Graunke | |
2010-02-19 | Remove _mesa_strcmp in favor of plain strcmp. | Kenneth Graunke | |
2010-02-19 | Remove _mesa_strlen in favor of plain strlen. | Kenneth Graunke | |
2010-02-19 | Remove _mesa_strncpy in favor of plain strncpy. | Kenneth Graunke | |
2010-02-19 | Remove _mesa_strcpy in favor of plain strcpy. | Kenneth Graunke | |