Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-04-04 | Remove the never-used SI-style imports/exports code. | Brian | |
2007-03-27 | Restore the UseTexEnvProgram logic. | Brian | |
Was removed during glsl-compiler work. Still need to go back and revisit this because of the interaction with fragment shaders... | |||
2007-03-24 | Free shader-related context state: _mesa_free_shader_state() | Brian | |
2007-03-09 | Merge branch 'origin' into glsl-compiler-1 | Brian | |
Conflicts: src/mesa/main/context.c | |||
2007-03-06 | Fix/improve framebuffer object reference counting. | Brian | |
Use _mesa_reference_framebuffer() and _mesa_unreference_framebuffer() functions to be sure reference counting is done correctly. Additional assertions are done too. Note _mesa_dereference_framebuffer() renamed to "unreference" as that's more accurate. | |||
2007-02-26 | Do proper framebuffer refcounting in _mesa_make_current(). | Brian | |
Also, added DeletePending field to gl_framebuffer used when a window has been deleted, but there still may be rendering contexts attached to the gl_framebuffer object. | |||
2007-02-22 | Merge branch 'origin' into glsl-compiler-1 | Brian | |
Conflicts: src/mesa/main/state.c src/mesa/shader/program.c src/mesa/shader/program.h src/mesa/shader/programopt.c src/mesa/shader/slang/slang_execute.c src/mesa/sources src/mesa/swrast/s_arbshader.c src/mesa/swrast/s_context.c src/mesa/swrast/s_span.c src/mesa/swrast/s_zoom.c src/mesa/tnl/t_context.c src/mesa/tnl/t_save_api.c src/mesa/tnl/t_vb_arbprogram.c src/mesa/tnl/t_vp_build.c src/mesa/tnl/t_vtx_eval.c | |||
2007-02-02 | Merge branch 'vbo-0.2' | Keith Whitwell | |
Conflicts: src/mesa/main/texcompress_s3tc.c src/mesa/tnl/t_array_api.c | |||
2007-01-26 | Override Const.CheckArrayBounds for Xserver in XMesaCreateContext(). | George Sapountzis | |
This leaves one last XFree86Server ifdef in Mesa core. --- Bug 9285: misc glcore, xmesa cleanups ACKed by Ian Romanick. | |||
2007-01-26 | Drop old (pre-AIGLX) GLcore interface. | George Sapountzis | |
The old GLcore interface was replaced in Xorg 7.1 with the addition of AIGLX, it is only used by DDX's which are known not to work with the new DIX glx code. --- Bug 9285: misc glcore, xmesa cleanups ACKed by Ian Romanick. | |||
2007-01-16 | Merge branch 'master' of git+ssh://keithw@git.freedesktop.org/git/mesa/mesa ↵ | Keith Whitwell | |
into vbo-0.2 Conflicts: src/mesa/array_cache/sources src/mesa/drivers/dri/i965/brw_context.c src/mesa/drivers/dri/i965/brw_draw.c src/mesa/drivers/dri/i965/brw_fallback.c src/mesa/drivers/dri/i965/brw_vs_emit.c src/mesa/drivers/dri/i965/brw_vs_tnl.c src/mesa/drivers/dri/mach64/mach64_context.c src/mesa/main/extensions.c src/mesa/main/getstring.c src/mesa/tnl/sources src/mesa/tnl/t_save_api.c src/mesa/tnl/t_save_playback.c src/mesa/tnl/t_vtx_api.c src/mesa/tnl/t_vtx_exec.c src/mesa/vbo/vbo_attrib.h src/mesa/vbo/vbo_exec_api.c src/mesa/vbo/vbo_save_api.c src/mesa/vbo/vbo_save_draw.c | |||
2007-01-15 | Don't special-case FOG attribute initialization. | Keith Whitwell | |
Initial fog value was being set to {0,0,0,0}. This results in vector size 4, but isn't necessary. The regular {0,0,0,1} works fine. | |||
2006-12-20 | Minor clean-ups, reformatting, comment changes. | Brian | |
2006-12-20 | Fix shader object reference counting and hash table deallocation. | Brian | |
2006-12-19 | Clean-up and re-org of the main GLSL object types. | Brian | |
Use the gl_shader struct as it should be. Renamed gl_linked_program to gl_shader_program. Store both shaders and programs in the same hash table and use the Type field to distinguish them. | |||
2006-12-19 | Overhaul of GLSL API functions, dispatching, etc. | Brian | |
2006-12-15 | Lots of assorted changes for new GLSL compiler backend. | Brian | |
New datatypes, constants, variables. | |||
2006-11-27 | replace check for XFree86LOADER and IN_MODULE with XFree86Server (bug 9144) | Brian Paul | |
2006-11-18 | delete shader objects when destroying shared context state | Brian Paul | |
2006-11-02 | merge current trunk into vbo branch | Alan Hourihane | |
2006-11-01 | Merge texmem-0-3-branch. | Keith Whitwell | |
2006-11-01 | Added a few new ctx->Const. fields for shader-related limits. | Brian Paul | |
2006-10-30 | Move edgeflag into the VERT_ATTRIB_SEVEN slot. This means that our | Keith Whitwell | |
NV_vertex_program implementation has slightly incorrect aliasing behaviour. I think this is reasonable given the simplification and the fact that the mainstream ARB_vp continues to have the correct behaviour. | |||
2006-10-17 | check if ctx->Driver.GetBufferSize==NULL and no-op | Brian Paul | |
2006-10-15 | Added #if / #else / #endif around code related to framebuffer initialization | Brian Paul | |
to describe what should be changed in the drivers. | |||
2006-09-22 | resize buffers in MakeCurrent | Keith Whitwell | |
2006-08-01 | Clean-up FEATURE_ARB_shader_objects #ifdefs. Bug 7492. | Michal Krol | |
2006-07-20 | Some structure renaming. Prefix vertex/fragment-related structs with | Brian Paul | |
"gl_" to match other structs. | |||
2006-07-11 | free array objects properly (bug 7493) | Brian Paul | |
2006-07-11 | free GL2Objects unconditionally | Tilman Sauerbeck | |
2006-07-11 | free the ArrayObjects hash table | Tilman Sauerbeck | |
2006-07-11 | only access ss->BufferObjects if it's declared | Tilman Sauerbeck | |
2006-06-30 | In free_shared_state(), use new _mesa_HashDeleteAll() function to delete | Brian Paul | |
textures, display lists, programs, VBOs, etc. Less code and more efficient. | |||
2006-06-29 | destroy left-over VBOs on shutdown | Tilman Sauerbeck | |
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-05-15 | Added a check_context_limits() function that checks that the ctx->Const.* | Brian Paul | |
fields are legal. May catch some driver development bugs. Called the first time a context is bound. | |||
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-13 | Fix comment about MaxTextureUnits, needs to be min of coord and image units. | Brian Paul | |
See bug 5994. Also add a few assertions. Use MaxTextureUnits in get.c code. There's probably other places where we need to clean-up the usage of the MaxTexture[Coord/Image]Units constants. | |||
2006-03-29 | minor clean-up | Brian Paul | |
2006-03-20 | fix some buffer binding tests in _mesa_make_current() | Brian Paul | |
2006-03-16 | Moved _glapi_check_multithread() call into drivers, instead of in | Brian Paul | |
_mesa_make_current(). This removes an ugly #if !defined(IN_DRI_DRIVER) from core Mesa. | |||
2006-03-07 | just a comment for check_compatible() | Brian Paul | |
2006-03-07 | disable double-buffer test in check_compatible(), fixes pbuffer/visual problem | Brian Paul | |
2006-02-26 | display list clean-ups | Brian Paul | |
2006-02-24 | fix broken _mesa_copy_context() for GL_LIGHTING_BIT | Brian Paul | |
2006-01-16 | properly free ATI fragment shaders (Tilman Sauerbeck) | Brian Paul | |
2005-12-30 | properly notify driver on scissor change in MakeCurrent | Keith Whitwell | |
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-11-19 | No longer derive 'ati_fragment_shader' from 'program' class. Only the | Brian Paul | |
program->Id and program->RefCount fields were used and ATI fragment shaders didn't have too much in common with ARB/NV vertex/fragment programs anyway. | |||
2005-11-12 | Added OSMesaColorClamp(), bug 4917 | Brian Paul | |