Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New IMAGE_RED_TO_LUMINANCE flag passed to _mesa_pack_rgba_span_float() to ↵ | Brian | 2007-03-09 | 3 | -6/+16 |
| | | | | fix glGetTexImage(GL_LUMINANCE) bug #10232. | ||||
* | remove a if-statement | Xiang, Haihao | 2007-03-08 | 1 | -2/+1 |
| | | | | | | glMaterial changes the current specular exponent or glLight changes the intensity distribution of the light, but _mesa_update_state doesn't update the corresponding light table. So they must be updated at this time. | ||||
* | Merge branch 'master' of git+ssh://[email protected]/git/mesa/mesa | Brian | 2007-03-06 | 1 | -2/+2 |
|\ | |||||
| * | Merge branch 'master' of ssh+git://[email protected]/git/mesa/mesa | Ian Romanick | 2007-03-06 | 9 | -111/+149 |
| |\ | |||||
| * | | Fix cut-and-paste error in the name of GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB. | Ian Romanick | 2007-03-06 | 1 | -2/+2 |
| | | | |||||
* | | | explicit calls to _mesa_unreference_framebuffer() not always needed now | Brian | 2007-03-06 | 1 | -2/+0 |
| | | | |||||
* | | | unreference old framebuffer, if needed, in _mesa_reference_framebuffer() | Brian | 2007-03-06 | 1 | -0/+7 |
| |/ |/| | |||||
* | | Fix/improve framebuffer object reference counting. | Brian | 2007-03-06 | 7 | -64/+76 |
| | | | | | | | | | | | | | | 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. | ||||
* | | Take care of texObj reference in _mesa_free_framebuffer_data() | Brian | 2007-03-06 | 1 | -6/+11 |
| | | |||||
* | | move oldFb decl into tighter scopes | Brian | 2007-03-01 | 1 | -3/+3 |
| | | |||||
* | | fix bad n_dot_h normalization code (bug 9977), plus clean-up the code in general | Brian | 2007-03-01 | 1 | -33/+31 |
| | | |||||
* | | assert that fb->RefCount==0 in _mesa_free_framebuffer_data() | Brian | 2007-02-27 | 1 | -0/+1 |
| | | |||||
* | | Do proper framebuffer refcounting in _mesa_make_current(). | Brian | 2007-02-26 | 3 | -16/+38 |
|/ | | | | | | 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. | ||||
* | fd.o #BZ 9684 | Zou Nan hai | 2007-02-12 | 1 | -1/+2 |
| | | | | | gcc may cast an overflowed float value to an negative int value on i386, fix it to make sure at least some apps will not crash if it contains wrong normal data. | ||||
* | ctx->Point._Size fix | Rune Peterson | 2007-02-10 | 3 | -26/+7 |
| | |||||
* | optimize generated vertex programs a bit | Roland Scheidegger | 2007-02-09 | 1 | -0/+8 |
| | | | | | | | | Use new internal state to avoid per-vertex normalization of static spot direction vector. Use internal state for simpler per-vertex fog computations (MAD instead of SUB/MUL for linear fog, EX2 instead of POW for EXP/EXP2 fog). Simplify point size calc (2 MADs instead of MOV, MUL, MUL, DP3), and while there fix it up (RSQ instead of RCP). All untested... | ||||
* | fix mem leak | Panagiotis Papadakos | 2007-02-05 | 1 | -0/+3 |
| | |||||
* | Add _NEW_PROGRAM flag to _MESA_NEW_NEED_EYE_COORDS. | Brian | 2007-02-03 | 1 | -0/+1 |
| | | | | | This fixes a segfault in the texgen code that can occur after we've disabled a vertex program. | ||||
* | Merge branch 'vbo-0.2' | Keith Whitwell | 2007-02-02 | 11 | -123/+69 |
|\ | | | | | | | | | | | | | Conflicts: src/mesa/main/texcompress_s3tc.c src/mesa/tnl/t_array_api.c | ||||
| * | Don't special-case index, edgeflag. | Keith Whitwell | 2007-01-16 | 1 | -46/+3 |
| | | | | | | | | | | | | Remove display list opcodes for INDEX and EDGEFLAG, handle them through the regular ATTRIB mechanism now that Mesa understands them to just be regular attribs. | ||||
| * | Merge branch 'master' of git+ssh://[email protected]/git/mesa/mesa ↵ | Keith Whitwell | 2007-01-16 | 34 | -3261/+3586 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
| * | | Don't special-case FOG attribute initialization. | Keith Whitwell | 2007-01-15 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | 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. | ||||
| * | | merge current trunk into vbo branch | Alan Hourihane | 2006-11-02 | 21 | -651/+950 |
| | | | |||||
| * | | oops, get.c is autogenerated | Keith Whitwell | 2006-10-30 | 2 | -4/+4 |
| | | | |||||
| * | | Move edgeflag into the VERT_ATTRIB_SEVEN slot. This means that our | Keith Whitwell | 2006-10-30 | 5 | -13/+13 |
| | | | | | | | | | | | | | | | | | | | | | 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. | ||||
| * | | better handling of current attributes. Trivial dlist and varray tests work | Keith Whitwell | 2006-10-30 | 3 | -17/+4 |
| | | | |||||
| * | | Fix compiler warning | Keith Whitwell | 2006-10-29 | 1 | -1/+1 |
| | | | |||||
* | | | _mesa_pack_rgba_span_float: fix for packing data into group | Xiang, Haihao | 2007-01-31 | 1 | -3/+5 |
| | | | |||||
* | | | bump version to 6.5.3 | Brian | 2007-01-30 | 1 | -7/+7 |
| | | | |||||
* | | | Bug 9628: no entry for GetVertexAttribPointerv | George Sapountzis | 2007-01-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | This is because (in glX_API.xml) GetVertexAttribPointerv is aliased to GetVertexAttribPointervARB which is then aliased to GetVertexAttribPointervNV. Make GetVertexAttribPointerv alias GetVertexAttribPointervNV directly. Patch by Ian Romanick <[email protected]> and regenerate. | ||||
* | | | fix typo | Brian | 2007-01-26 | 1 | -1/+1 |
| | | | |||||
* | | | document, re-indent _mesa_ffsll() | Brian | 2007-01-26 | 1 | -10/+18 |
| | | | |||||
* | | | Merge branch 'master' of git+ssh://[email protected]/git/mesa/mesa | Brian | 2007-01-26 | 3 | -24/+28 |
|\ \ \ | |||||
| * | | | Add _mesa_ffsll() for compatibility on OSes without ffsll(), and use it. | Eric Anholt | 2007-01-26 | 2 | -0/+24 |
| | | | | |||||
| * | | | Override Const.CheckArrayBounds for Xserver in XMesaCreateContext(). | George Sapountzis | 2007-01-26 | 1 | -7/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This leaves one last XFree86Server ifdef in Mesa core. --- Bug 9285: misc glcore, xmesa cleanups ACKed by Ian Romanick. | ||||
| * | | | Drop old (pre-AIGLX) GLcore interface. | George Sapountzis | 2007-01-26 | 2 | -17/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | | | silence C++ warnings | Brian | 2007-01-23 | 1 | -2/+2 |
|/ / / | |||||
* | / | fixes for C++ warnings/errors | Brian | 2007-01-23 | 5 | -10/+11 |
| |/ |/| | |||||
* | | put back missing Driver.PolygonMode call (bug 9578) | Roland Scheidegger | 2007-01-09 | 1 | -0/+3 |
| | | |||||
* | | Fix glPush/PopClientAttrib() for VBO state (bug 9445). | Brian | 2007-01-05 | 1 | -2/+15 |
| | | |||||
* | | Drop mesa wrappers for XFree86. | George Sapountzis | 2006-12-21 | 3 | -208/+45 |
| | | |||||
* | | Fix copy-and-paste mistake in comment ("scaling" should read "translation"). | Gary Wong | 2006-12-15 | 1 | -1/+1 |
| | | | | | | | | Before _mesa_Translatef(). | ||||
* | | Merge branch 'master' of git+ssh://[email protected]/git/mesa/mesa | Brian | 2006-12-14 | 1 | -1/+2 |
|\ \ | |||||
| * | | _mesa_swizzle_ubyte_image: Only use single swizzle_copy call when strides match. | Michel Dänzer | 2006-12-14 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | This fixes texture data corruption with glTexSubimage (and probably glTexImage under some circumstances) with the texstore swizzle path. | ||||
* | | | Move all the code for computing ctx->_TriangleCaps into state.c. | Brian | 2006-12-13 | 8 | -166/+129 |
|/ / | | | | | | | ctx->_TriangleCaps should probably go away altogether someday... | ||||
* | | replace check for XFree86LOADER and IN_MODULE with XFree86Server (bug 9144) | Brian Paul | 2006-11-27 | 1 | -1/+1 |
| | | |||||
* | | Prune incoming state to the atoms of interest. Hopefully this will | Keith Whitwell | 2006-11-22 | 1 | -6/+14 |
| | | | | | | | | | | prevent driver-initiated statechanges in the middle of DrawElements/DrawArrays from disturbing this code. | ||||
* | | Another fix | Keith Whitwell | 2006-11-22 | 1 | -0/+8 |
| | | |||||
* | | list header files in sources files (Dan Nicholson) | Brian Paul | 2006-11-21 | 1 | -1/+75 |
| | | |||||
* | | More fixes, glean seems to run now. | Keith Whitwell | 2006-11-21 | 1 | -2/+3 |
| | |