Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-03-03 | Use standard ARB names instead of vendor-specific NV names for the ↵ | Roland Scheidegger | |
ARB/NV_vertex_program enums in common state handling code, and update comments accordingly. Change some slightly confusing code which gave the impression GL_VERTEX_PROGRAM_ARB and GL_VERTEX_PROGRAM_NV enums were different. | |||
2006-03-02 | Fix more enums defined not only by one extension when queried by glGet ↵ | Roland Scheidegger | |
(GL_COLOR_SUM_EXT, GL_POINT_SPRITE_NV, GL_POINT_SPRITE_COORD_ORIGIN, GL_TRANSPOSE_CURRENT_MATRIX_ARB). Fix similar bugs (also those previously overseen dependant on NV/ARB_vertex_program) in glIsEnabled. Add missing GL_COLOR_SUM_EXT enum to glIsEnabled. | |||
2006-03-02 | improved error msg | Brian Paul | |
2006-03-02 | check FEATURE_EXT_framebuffer_blit | Brian Paul | |
2006-03-01 | Fix glGet with enums which are used not only in NV_vertex_program, but other ↵ | Roland Scheidegger | |
extensions too (ARB_vertex_program, ARB_fragment_program, NV_fragment_program), if no support for NV_vertex_program is present. While here, fix return value if enum is used which is not supported by the exposed extensions (GL_INVALID_ENUM instead of GL_INVALID_VALUE). Fix some compile-time #ifs depending on NV_vertex/fragment_program which should also be dependant on ARB_vertex/fragment_program. See bug #6070 | |||
2006-03-01 | No need for _mesa_save_error() to be public. | Brian Paul | |
glVertexAttrib() w/ bad index should generate GL_INVALID_VALUE, not GL_INVALID_ENUM. Misc clean-ups. | |||
2006-03-01 | added BlitFramebuffer() support | Brian Paul | |
2006-03-01 | updated comment | Brian Paul | |
2006-03-01 | Added glBlitFramebufferEXT function. | Brian Paul | |
2006-03-01 | remove temporary tokens, more error checks for blit function | Brian Paul | |
2006-02-28 | Allow error checking to look for presence of either of two extensions. | Brian Paul | |
See bug 6070. | |||
2006-02-27 | More GLSL code: | Michal Krol | |
- add x86 code generator; - add full support for uniforms in ARB_shader_objects; - add assembly instruction: global_addr; - reorganize #includes; - built-in uniforms accessed by index, rather than by name; - add some entries to x86sse rtasm; - add configurations to VC6 projects: 'Release x86' and 'Debug x86'; - #define SLANG_X86 active only on VC6 x86 builds; - introduce code export table for a shader; - remove GNU license from the noise library; | |||
2006-02-26 | re-formated with indent. | Brian Paul | |
2006-02-26 | Remove need to initialize the InstSize[] array elements by just storing | Brian Paul | |
the instruction size in _mesa_alloc_instruction(). | |||
2006-02-26 | display list clean-ups | Brian Paul | |
2006-02-24 | fix broken _mesa_copy_context() for GL_LIGHTING_BIT | Brian Paul | |
2006-02-24 | Fix _mesa_copy_texture_state() so that we copy texture object bindings, | Brian Paul | |
not the actual contents of texture objects. This makes glXCopyContext() work properly. | |||
2006-02-15 | Include dix-config.h if HAVE_DIX_CONFIG_H is defined. This will be used by the | Eric Anholt | |
X Server to get things like _XSERVER64 (for X headers) and NO_LIBCWRAPPER defined consistently when its builds Mesa internally. | |||
2006-02-15 | Enable texcoords when program object in use. | Michal Krol | |
2006-02-15 | Enable GL_ARB_fragment_shader extension. | Michal Krol | |
2006-02-13 | Enable GL_ARB_shader_objects, GL_ARB_shading_language_100 and | Michal Krol | |
GL_ARB_vertex_shader extensions. | |||
2006-02-13 | Rename current glsl program variable. | Michal Krol | |
2006-02-13 | Add _mesa_atanf and _mesa_asinf functions. | Michal Krol | |
2006-02-11 | Add the ability to define NO_LIBCWRAPPER to avoid libcwrapper brain damage. | Eric Anholt | |
If it's true that libcwrapper usage isn't necessary ever in the DllLoader world, then this code should probbaly all go away. | |||
2006-02-01 | fix test for valid texunit in _mesa_ClientActiveTextureARB | Roland Scheidegger | |
2006-01-24 | fix using a tmp without asking for one | Jerome Glisse | |
2006-01-24 | pull in fix from 6.4 branch for XFree86Server definition | Alan Hourihane | |
2006-01-24 | fix broken get_half & get_zero | Aapo Tahkola | |
2006-01-19 | Avoid a crash when the user has enabled glVertex{,Attrib}Pointer but hasn't | Adam Jackson | |
filled in a valid pointer for that attribute or vertex array. | |||
2006-01-16 | properly free ATI fragment shaders (Tilman Sauerbeck) | Brian Paul | |
2006-01-09 | s/GLuint/GLbitfield/ | Brian Paul | |
2005-12-30 | properly notify driver on scissor change in MakeCurrent | Keith Whitwell | |
2005-12-15 | move va_end() call (Evgeny Kotsuba) | Brian Paul | |
2005-12-14 | Fix typo. | Keith Whitwell | |
2005-12-14 | use GLbitfield instead of GLuint | Brian Paul | |
2005-12-14 | Removed the GL_SGIX/SGIS_pixel_texture extensions. Same thing can be | Brian Paul | |
done with fragment programs nowadays. | |||
2005-12-12 | silence warning, bug 5318 | Brian Paul | |
2005-12-12 | Split _MaintainTexEnvProgram into two flags _Maintain and _Use. This | Keith Whitwell | |
restores the ability to run the software driver with program TNL but tradtional swrast. | |||
2005-12-08 | don't need LONGLONG typedefs | Brian Paul | |
2005-12-08 | add 64-bit typedefs for portability | Karl Schultz | |
2005-12-07 | Updates for GL_EXT_timer_query: | Brian Paul | |
New GLint64EXT and GLuint64EXT types (use C99's long long types). New glGetQueryObject[u]i64vEXT() functions. | |||
2005-12-06 | C++ fixes, mostly casts (Stephane Conversy) | Brian Paul | |
2005-12-02 | fix _mesa_ffs() return, test for more platforms (Evgeny Kotsuba) | Brian Paul | |
2005-12-01 | remove uintptr_t cast | Brian Paul | |
2005-12-01 | try removing need for the uintptr_t casts | Brian Paul | |
2005-12-01 | Added FinishRenderTexture() device driver function to indicate when | Brian Paul | |
rendering to a texture has likely completed. Fixed refcount issue in texture renderbuffer wrapper. | |||
2005-12-01 | added comment about glTexImage and renderbuffers | Brian Paul | |
2005-11-30 | fxt1_decode_1() should not be static | Brian Paul | |
2005-11-28 | Remove the many aliases for 'struct mem_block' in mm.h | Keith Whitwell | |
2005-11-28 | Correct author attribution of mm.h | Keith Whitwell | |