Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use driver functions to create TexEnvProgram, TnlProgram | Keith Whitwell | 2005-05-09 | 1 | -2/+7 |
| | |||||
* | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | 2005-05-04 | 1 | -0/+4 |
| | | | | | | | Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. | ||||
* | Add a facility to route all rasterization through a fragment program | Keith Whitwell | 2005-05-04 | 1 | -0/+13 |
| | | | | | | | | | | | which is automatically generated to match the current texture environment state. Introduces a new value ctx->FragmentProgram._Active which is true when either _Enabled is true or there is such a fragment program ready to run. To test out on a driver running the software rasterizer, set MESA_TEX_PROG=t in the environment. It goes without saying that performance is lower for the software rasterizer in this mode. | ||||
* | cosmetic changes | Michal Krol | 2005-04-14 | 1 | -6/+7 |
| | |||||
* | Rename _mesa_update_buffers() to _mesa_update_draw_buffer_bounds() and do | Brian Paul | 2005-02-26 | 1 | -8/+9 |
| | | | | | additional checks. Replace _mesa_init_buffers() with _mesa_init_scissor() and _mesa_init_multisample(). | ||||
* | plug in GL_EXT_framebuffer_object functions | Brian Paul | 2005-02-08 | 1 | -0/+23 |
| | |||||
* | Some initial work for OpenGL 2.0: glStencilFunc/Op/MaskSeparate() functions. | Brian Paul | 2005-01-12 | 1 | -0/+5 |
| | |||||
* | Implement software ATI_fragment_shader | Dave Airlie | 2004-12-19 | 1 | -0/+23 |
| | | | | no error detection, slow, may not be 100% correct but a good start | ||||
* | Change the dispatch offsets for the VertexAttrib*NV functions so they don't | Brian Paul | 2004-11-27 | 1 | -3/+3 |
| | | | | | | | alias with the corresponding ARB functions. GL_ARB_vertex_shader (and OpenGL 2.0's) VertexAttrib functions don't alias with conventional vertex attributes, as GL_NV_vertex_program does. So, the ARB and NV version of VertexAttrib need to be distinct. | ||||
* | clean up code related to dispatch table initialization | Brian Paul | 2004-11-27 | 1 | -42/+1 |
| | |||||
* | use _glapi_proc | Brian Paul | 2004-11-27 | 1 | -6/+3 |
| | |||||
* | fill api entries for ARB_shader_objects and ARB_vertex_shader | Michal Krol | 2004-10-27 | 1 | -0/+50 |
| | |||||
* | added support for GL_ARB_draw_buffers | Brian Paul | 2004-10-02 | 1 | -0/+4 |
| | |||||
* | updated error msg | Brian Paul | 2004-09-10 | 1 | -2/+2 |
| | |||||
* | Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵ | Brian Paul | 2004-08-25 | 1 | -2/+3 |
| | | | | 1015696) | ||||
* | Add EXT_vertex_cull support to mesa | Keith Whitwell | 2004-05-10 | 1 | -0/+2 |
| | |||||
* | Added ctx->Vertex/FragmentProgram._Enable flags. Set when vertex/fragment | Brian Paul | 2004-04-23 | 1 | -17/+36 |
| | | | | | | | program is enabled AND the currently bound program is valid. Check _Enable instead of Enable to prevent things from blowing up when someone calls glEnable(GL_VERTEX_PROGRAM_ARB) without actually defining a program. | ||||
* | Added support for EXT_blend_equation_separate / ATI_blend_equation_separate. | Ian Romanick | 2004-01-27 | 1 | -0/+1 |
| | | | | | The internal driver interface was also changed to use BlendEquationSeparate instead of BlendEquation. | ||||
* | Don't set extra bits in FLUSH_VERTICES, fix several state bugs. | Keith Whitwell | 2004-01-23 | 1 | -13/+11 |
| | |||||
* | remove _mesa_check_driver_hooks() - it's really not too useful anymore | Brian Paul | 2004-01-20 | 1 | -11/+6 |
| | |||||
* | Merge vtx-0-2-branch | Keith Whitwell | 2003-11-24 | 1 | -1/+1 |
| | |||||
* | Redo array element checking for vertex array buffers. | Brian Paul | 2003-11-10 | 1 | -0/+108 |
| | | | | | | | Now, compute ctx->Array._MaxElement as the min of enabled array's max element. Test against ctx->Array._MaxElement in glDrawArrays/Elements. Note: testing in glArrayElement not done yet. Only do element checking if ctx->Const.CheckArrayBounds is set. | ||||
* | Moved some shared vertex/fragment program code into new program.c file. | Brian Paul | 2003-08-31 | 1 | -5/+7 |
| | | | | | | | Implemented new program_parameter_list type and functions for dealing with named program parameters, constants and GL state references. New state_index enum for describing GL state referenced within ARB vertex/ fragment programs. Plus, functions for fetching named GL state. | ||||
* | Added support for GL_IBM_multimode_draw_arrays. | Ian Romanick | 2003-08-22 | 1 | -0/+6 |
| | | | | | | | | Added non-static entrypoints and the name string for GL_SUN_multi_draw_arrays (identical to GL_EXT_multi_draw_arrays). Made add_newer_entrypoints (in src/mesa/main/context.c) table driven. This reduced the size of context.o by about 3KB. | ||||
* | fix a few more glitches from last big check-in | Brian Paul | 2003-07-23 | 1 | -9/+3 |
| | |||||
* | Merge Jose's documentation and core Mesa changes from embedded branch | Keith Whitwell | 2003-07-17 | 1 | -575/+170 |
| | |||||
* | Implemented GL_ARB_occlusion_query (not 100% finalized). | Brian Paul | 2003-06-13 | 1 | -0/+14 |
| | |||||
* | glBindProgramARB dispatches to glBindProgramNV (remove _mesa_BindProgramARB). | Brian Paul | 2003-05-28 | 1 | -10/+11 |
| | | | | Removed VertexAttrib*ARB() stubs. | ||||
* | Use ctx->Const.MaxTextureImageUnits and MaxTextureCoordUnits in more places. | Brian Paul | 2003-05-01 | 1 | -1/+3 |
| | | | | Misc vertex array / vertex program changes. | ||||
* | Implemented GL_EXT_depth_bounds_test. | Brian Paul | 2003-04-21 | 1 | -4/+0 |
| | |||||
* | alias ARB/NV program functions where possible | Brian Paul | 2003-04-21 | 1 | -40/+45 |
| | |||||
* | Added arbprogram.c to Makefiles. | Brian Paul | 2003-04-17 | 1 | -1/+72 |
| | | | | | Added display list support for GL_NV_fragment_program. Assorted clean-ups. | ||||
* | Added ctx->Texture._EnabledCoordUnits bitfield. | Brian Paul | 2003-04-08 | 1 | -1/+27 |
| | | | | | | Fixed some vertex array / vertex program glitches with glDrawElements. Fixed some fragment program runtime bugs. Non-trivial Cg programs are running now. | ||||
* | Basic infrastructure for GL_ARB_vertex_buffer_object. | Brian Paul | 2003-03-29 | 1 | -3/+21 |
| | |||||
* | proper dispatch for NV_fragment_program functions | Brian Paul | 2003-03-29 | 1 | -2/+2 |
| | |||||
* | Fix up some fragment program texture enable issues. | Brian Paul | 2003-03-15 | 1 | -9/+18 |
| | | | | Implemented TXD instruction. | ||||
* | Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch] | Brian Paul | 2003-03-01 | 1 | -6/+6 |
| | | | | | Moved type conversion and interpolation macros into macros.h Updated all the files that used to include mmath.h | ||||
* | First batch of code for GL_NV_fragment_program. | Brian Paul | 2003-01-14 | 1 | -3/+18 |
| | | | | | Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS. | ||||
* | a few dispatch pointers weren't set (glGenTexturesEXT for example) | Brian Paul | 2002-11-06 | 1 | -3/+18 |
| | |||||
* | Header file clean-up: | Brian Paul | 2002-10-24 | 1 | -5/+1 |
| | | | | | | | | 1. Remove all.h and PC_HEADER junk. 2. Rolled mem.c and mem.h into imports.c and imports.h 3. Include imports.h instead of mem.h Restore _mesa_create/initialize_context() to be like they were in 4.0.4 New wrappers for a few std C functions: _mesa_atoi(), _mesa_strstr(), etc. | ||||
* | surround vertex program code with #if FEATURE_NV_vertex_program/#endif | Brian Paul | 2002-10-16 | 1 | -1/+5 |
| | |||||
* | finally get rid of ctx->Texture._ReallyEnabled field | Brian Paul | 2002-10-08 | 1 | -11/+3 |
| | |||||
* | removed ctx->Polygon._OffsetAny - not really needed | Brian Paul | 2002-10-02 | 1 | -8/+6 |
| | |||||
* | new texture compression infrastructure | Brian Paul | 2002-09-27 | 1 | -4/+1 |
| | |||||
* | hook-up dispatch for glActiveStencilFaceEXT() | Brian Paul | 2002-09-06 | 1 | -3/+1 |
| | |||||
* | GL_EXT_stencil_two_side extension, not 100% complete yet. | Brian Paul | 2002-09-06 | 1 | -1/+6 |
| | |||||
* | Overhaul of glRead/DrawBuffer() code. Now, swrast->Driver.SetBuffer() | Brian Paul | 2002-07-09 | 1 | -2/+1 |
| | | | | | indicates the read AND draw color buffer for all software rasterization. Lots of related clean-ups. See RELNOTES-4.1 for details. | ||||
* | Implemented GL_EXT_multi_draw_arrays: glMultiDrawArraysEXT() and ↵ | Brian Paul | 2002-06-30 | 1 | -1/+5 |
| | | | | glMultiDrawElementsEXT(). | ||||
* | remove an unneeded statement in update_polygon(), added a comment | Brian Paul | 2002-06-25 | 1 | -3/+5 |
| | |||||
* | fix a comment | Brian Paul | 2002-06-16 | 1 | -2/+2 |
| |