Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-09-11 | Implement query object interface. | Brian | |
This replaces the temporary occlusion counter functions we had before. Added new ctx->Driver.WaitQuery() function which should block until the result is ready. Sketch out some code for vertex transformation feedback counters. | |||
2007-09-06 | Move guts of glRasterPos down into T&L module. | Brian | |
2007-07-19 | fix mesa fb binding | Roland Scheidegger | |
Make sure that we bind the right buffer (draw or read) when rebinding the window framebuffer (the api doesn't allow binding different draw and read buffers at the same time, but the default window framebuffer is basically 2 fb objects, one for read, one for write, which can be different). Pass both of these two down the driver api (no driver uses this right now). | |||
2007-02-25 | s/GetFragmentProgramRegister/GetProgramRegister/ | Brian | |
2006-12-19 | Overhaul of GLSL API functions, dispatching, etc. | Brian | |
2006-11-01 | update comments | Brian Paul | |
2006-11-01 | Remove x/y/width/height parameters from Clear functions. | Brian Paul | |
2006-10-18 | Don't pass x/y/width/height to ctx->Driver.Accum(). | Brian Paul | |
Compute the region after we've locked (and possibly updated the buffer's size). Same thing is needed for ctx->Driver.Clear(). | |||
2006-10-15 | updated comments, mark GetBufferSize() and ResizeBuffers() as obsolete | Brian Paul | |
2006-10-10 | Move the fp_machine struct into s_nvfragmprog.c since (except for program | Brian Paul | |
debug) it's only used there. | |||
2006-07-20 | Some structure renaming. Prefix vertex/fragment-related structs with | Brian Paul | |
"gl_" to match other structs. | |||
2006-06-12 | Add support for GL_APPLE_vertex_array_object. Several test programs | Ian Romanick | |
and demos are also added. Adding basic support to drivers should be as easy as just enabling the extension, though thorough test would also be required. | |||
2006-04-25 | Put color index attribute into the 6th attribute slot. | Brian Paul | |
Update a lot of loops, conditionals to use the _TNL_FIRST/LAST_* values instead of specific vertex attributes. Remove the EdgeFlagv function from the GLvertexformat struct. | |||
2006-04-25 | No longer alias generic vertex attribs with conventional attribs for ↵ | Brian Paul | |
GL_ARB_vertex_program. | |||
2006-03-26 | merge from texman branch | Brian Paul | |
2006-03-20 | Lots of changes/fixes for rendering to framebuffer objects. | Brian Paul | |
- When deleting texture objects, unbind from FBOs if necessary. - Changed driver hooks for starting/ending render to texture. - Now properly handle case where gl[Copy]TexImage() is called after glFramebufferTexture[123]D(). That didn't work before. | |||
2006-03-15 | sync with texmem branch | Brian Paul | |
2006-01-09 | s/GLuint/GLbitfield/ | 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-11-16 | Support for combined depth/stencil renderbuffers (GL_EXT_packed_depth_stencil). | Brian Paul | |
depthstencil.c provides wrappers for treating depth/stencil buffers either as regular depth or stencil renderbuffers. | |||
2005-11-12 | Added _mesa_light() helper function so we can avoid transforming then | Brian Paul | |
un-transforming light positions and spot directions when popping light state off the attribute stack. | |||
2005-11-08 | some initial work on upcoming GL_EXT_framebuffer_blit extension | Brian Paul | |
2005-09-14 | Remove _tnl_MakeCurrent() and the unused ctx->Driver.MakeCurrent() callback. | Brian Paul | |
2005-09-13 | Replace ctx->Driver.StencilOp/Func/Mask() functions with | Brian Paul | |
ctx->Driver.Stencil*Separate() functions. | |||
2005-09-02 | Prototype implementation of new GL_EXT_timer_query extension (not finalized ↵ | Brian Paul | |
yet). Extends the query mechanism to query elapsed time while rendering. | |||
2005-08-27 | Rearrange the code related to GL_ARB_occlusion_object to generalize query | Brian Paul | |
objects for future types of queries. | |||
2005-05-24 | Change prototype for TextureMemCpy to return void* (was void). | Karl Schultz | |
2005-05-23 | Import Thomas Helstrom's SSE memcpy code from the via X.org driver. | Keith Whitwell | |
Add a TextureMemCpy callback, called from texstore.c when copying texture data via the memcpy_texture() path. Enable this code in the via driver - 100% speedup in texdown.c results. | |||
2005-05-04 | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | |
Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. | |||
2005-03-22 | add FreeTexImageData hook to help single-copy texturing in drivers | Keith Whitwell | |
2005-02-24 | More GL_EXT_framebuffer_object: rename some things, added device driver hooks. | Brian Paul | |
2005-01-22 | Determine ahead of time whether a display list will include vertices | Keith Whitwell | |
which have to be processed in the 'loopback' path. If so, send all vertices that way as the transition from playback->loopback has several problems. | |||
2005-01-12 | Some initial work for OpenGL 2.0: glStencilFunc/Op/MaskSeparate() functions. | Brian Paul | |
2004-12-12 | Added driver hooks for GetTexImage() and GetCompressedTexImage(). | Brian Paul | |
Added fallback _mesa_get_[compressed]_teximage() routines to texstore.c | |||
2004-11-27 | Change the dispatch offsets for the VertexAttrib*NV functions so they don't | Brian Paul | |
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. | |||
2004-10-02 | added support for GL_ARB_draw_buffers | Brian Paul | |
2004-05-14 | minor doxygen updates | Brian Paul | |
2004-04-27 | Removed the old teximage code. | Brian Paul | |
Moved all code related to specific texture compression modes into new texcompress_s3tc.c and texcompress_fxt1.c files (but not implemented). | |||
2004-03-21 | Implemented support for software-based AUX color buffers. | Brian Paul | |
Only available with Xlib driver for now. Assorted clean-ups related to Draw/ReadBuffer(). Renamed FRONT_LEFT_BIT -> DD_FRONT_LEFT_BIT, etc. | |||
2004-02-14 | Make it easier for drivers to create "subclasses" of the existing | Keith Whitwell | |
program struct hierarchy. Add driver callbacks to enable the above and make it possible to track more changes to program objects. | |||
2004-01-27 | Added support for EXT_blend_equation_separate / ATI_blend_equation_separate. | Ian Romanick | |
The internal driver interface was also changed to use BlendEquationSeparate instead of BlendEquation. | |||
2004-01-23 | added device driver hooks for BindProgram, NewProgram, DeleteProgram | Brian Paul | |
2004-01-21 | Remove dd_function_table::BlendFunc. All drivers now use | Ian Romanick | |
dd_function_table:BlendFuncSeparate. If a driver does not actually support EXT_blend_func_separate, it can assume that the RGB and alpha blend functions are the same. | |||
2004-01-20 | Before calling _mesa_create_context(), initialize a dd_function_table struct | Brian Paul | |
by calling _mesa_init_driver_functions() and then plugging in the driver- specific functions. In particular, make sure ctx->Driver.NewTextureObject points to the appropriate driver function so that _all_ texture objects are augmented with the driver-specific data. Put in a bunch of assertions in the texture-related driver functions that texObj->DriverData is valid. Remove old dead code in near future. | |||
2003-11-24 | Merge vtx-0-2-branch | Keith Whitwell | |
2003-10-29 | texture compression | Daniel Borca | |
2003-10-21 | Added GLAPIENTRY decorations for all first level OpenGL API function entry | Kendall Bennett | |
points so that the calling conventions will work correctly with the assembler stubs with the Open Watcom compiler. | |||
2003-09-17 | move some functions, add some comments | Brian Paul | |
2003-09-09 | Added most of the infrastructure required to support | Ian Romanick | |
ARB_vertex_buffer_object. THIS IS INCOMPLETE. | |||
2003-07-17 | Merge Jose's documentation and core Mesa changes from embedded branch | Keith Whitwell | |