summaryrefslogtreecommitdiff
path: root/src/mesa
AgeCommit message (Collapse)Author
2005-12-07Fix bugzilla 5253. Add {} around code in RENDER_SPAN macros when code ↵Karl Schultz
includes a variable declaration.
2005-12-06Make missing interpolator inputs fatalAapo Tahkola
2005-12-06Fix secondary color for VP'sAapo Tahkola
2005-12-06C++ fixes, mostly casts (Stephane Conversy)Brian Paul
2005-12-06Add support for GL_EXT_secondary_color. It looks like usingEric Anholt
NEED_SECONDARY_COLOR to turn it off/on was what we wanted -- now results look correct using seccolor on Savage IX and Savage4.
2005-12-05Add guard before calling ctx->Driver.BindProgramKeith Whitwell
2005-12-05Fix AL8Aapo Tahkola
2005-12-05update r300 drm minimum to 20Dave Airlie
2005-12-04Fix r300 rectangular texture upload and swtcl coordinate fixing same as radeonDave Airlie
sw tcl
2005-12-02Added PCI_CHIP_RV410_5E4B (Adam Kirchhoff)Brian Paul
2005-12-02Fix two failures encountered when running out of memory during XImageBrian Paul
allocation. Append \n to _mesa_warning() strings.
2005-12-02fix _mesa_ffs() return, test for more platforms (Evgeny Kotsuba)Brian Paul
2005-12-02Fix build issues on x86-64 due to missing include path inIan Romanick
glapi_x86-64.S. Bug: #5602
2005-12-01Call ProgramStringNotify after creating tnl programs.Keith Whitwell
2005-12-01Remove VB->LastClippedKeith Whitwell
2005-12-01Clean up clipping somewhatKeith Whitwell
- no need to update ClipMask on generated vertices - remove the VB->LastClipped value Line clipping algorithm changed and simplified somewhat. The old one was based on the triangle routine and probably wouldn't have recognized lines that were clipped down to nothing (ie culled, but not by a single plane).
2005-12-01remove uintptr_t castBrian Paul
2005-12-01try removing need for the uintptr_t castsBrian Paul
2005-12-01Added FinishRenderTexture() device driver function to indicate whenBrian Paul
rendering to a texture has likely completed. Fixed refcount issue in texture renderbuffer wrapper.
2005-12-01added comment about glTexImage and renderbuffersBrian Paul
2005-12-01get depthBits from the current drawbufferBrian Paul
2005-11-30fxt1_decode_1() should not be staticBrian Paul
2005-11-29assorted fixes for server-side direct rendering (bug 5199)Brian Paul
2005-11-29use the files from the drm tree/packageBrian Paul
2005-11-29If the DDX driver didn't reserve any video RAM for textures, fall back toMichel Dänzer
using only GART memory for textures instead of segfaulting in the texture management code. (Bug 5115)
2005-11-28Remove the many aliases for 'struct mem_block' in mm.hKeith Whitwell
2005-11-28Correct author attribution of mm.hKeith Whitwell
2005-11-28check for driver_modes == NULL. Don't need driver_modes for EGL driverBrian Paul
2005-11-28rearrange some code to put in more logical order, misc clean-upsBrian Paul
2005-11-27include stdint.h for BSDBrian Paul
2005-11-25use ADD_POINTERS macro instead of (uintptr_t) castBrian Paul
2005-11-24Use _mesa_exec_free for fp->func.Keith Whitwell
2005-11-24use new _egl_api structBrian Paul
2005-11-23Couple changes that were missed.Aapo Tahkola
2005-11-23fixed wrong return value in radeonShowSurfaceMESA()Brian Paul
2005-11-22reference bug 5131 in comment in _tnl_free_vertices()Brian Paul
2005-11-22disable freeing of fp->func, see comment (bug 5131)Brian Paul
2005-11-22Use correct enums for program output variables. FixesKeith Whitwell
fp/tri-depthwrite.
2005-11-22track state flags which might invalidate parameter listsKeith Whitwell
2005-11-22Make sure tnl->_DoVertexFog is kept uptodate. Fixes fog in i915Keith Whitwell
driver.
2005-11-21bit 31 of this inserts a nop after the current instructionDave Airlie
2005-11-21get rid of some of those unknowns figured out from reg dumperDave Airlie
2005-11-20move _mesa_init_instruction() to program.cBrian Paul
2005-11-20s/Saturate/SaturateMode/Brian Paul
2005-11-20Make Saturate a 2-bit field again, renamed to SaturateMode with threeBrian Paul
possible values: SATURATE_OFF, SATURATE_ZERO_ONE and SATURATE_PLUS_MINUS_ONE.
2005-11-19additional clean-ups and improvementsBrian Paul
2005-11-19remove incorrect castBrian Paul
2005-11-19Saturate is a 1-bit boolean fieldBrian Paul
2005-11-19Bunch of little fixes:Brian Paul
Fix mem leaks in _mesa_TexEnvProgramCacheDestroy(). Check if ctx->Driver.BindProgram is non-null before calling. s/unsigned/GLuint/ Use MAX_INSTRUCTIONS instead of magic 100, check program length after it's made. Use _mesa_init_instruction() instead of _mesa_memset().
2005-11-19in run_texnorm_stage() check if the texture unit is really enabled before ↵Brian Paul
trying to normalize the texcoords