summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-09-14remove unused varsBrian Paul
2005-09-14remove _tnl_MakeCurrent callBrian Paul
2005-09-14initial 6.5 release notesBrian Paul
2005-09-14Remove _tnl_MakeCurrent() and the unused ctx->Driver.MakeCurrent() callback.Brian Paul
2005-09-14fix breakage from Brians changes earlierDave Airlie
2005-09-14clean-up some _mesa_make_current() codeBrian Paul
2005-09-14remove rm -f lineBrian Paul
2005-09-14remove .a file before creating new oneBrian Paul
2005-09-14pageflip change from radeon driverBrian Paul
2005-09-14Instead of calling _mesa_ResizeBuffersMESA() in the Viewport function,Brian Paul
call driUpdateFramebufferSize() when window size/position changes.
2005-09-14make some funcs staticBrian Paul
2005-09-14Instead of calling _mesa_ResizeBuffersMESA() in the Viewport function,Brian Paul
call driUpdateFramebufferSize() when window size/position changes.
2005-09-14use mklib script to make drivers instead of gcc -sharedBrian Paul
2005-09-14updated commentBrian Paul
2005-09-14make some functions staticBrian Paul
2005-09-14Instead of calling _mesa_ResizeBuffersMESA() in the Viewport function,Brian Paul
call driUpdateFramebufferSize() when we detect changes in window size/ position in radeonGetLock().
2005-09-14added driUpdateFramebufferSize()Brian Paul
2005-09-13Move _mesa_add_soft_renderbuffers() from framebuffer.c to renderbuffer.cBrian Paul
Update some comments, code, etc.
2005-09-13update like for MD2 viewerBrian Paul
2005-09-13replace semicolon with &&Brian Paul
2005-09-13print version with debug infoBrian Paul
2005-09-13fix FreeBSD problem (bug 4435)Brian Paul
2005-09-13Fix libGL build on FreeBSD by respecting ASM_FLAGS.Eric Anholt
Submitted by: Diego Pettenò <flameeyes@gentoo.org>
2005-09-13Replace ctx->Driver.StencilOp/Func/Mask() functions withBrian Paul
ctx->Driver.Stencil*Separate() functions.
2005-09-13OpenGL 2.0's two-sided stencil feature wasn't implemented correctly.Brian Paul
See comment near top of stencil.c for info about OpenGL 2.0 vs. GL_EXT_stencil_two_side.
2005-09-13just some reformattingBrian Paul
2005-09-13Clear either 8 or 16-bit stencil buffers.Brian Paul
2005-09-13Use GLuint/GLint intead of GLstencil for stencil state.Brian Paul
2005-09-13Move the ctx->FirstTimeCurrent initializationBrian Paul
2005-09-13init StencilOpSeparate to NULLBrian Paul
2005-09-12add GL_ATI_fragment_shader support for r200Roland Scheidegger
2005-09-12added a return upon out-of-memory, remove a needless assignmentBrian Paul
2005-09-12restore brace lost in previous check-inBrian Paul
2005-09-12add complete support for ATI_fragment_shader for the r200. Most of the new ↵Roland Scheidegger
code is in the new file r200_fragshader.c. Reverse engeneered by Dave Airlie and me
2005-09-12remove unnecessary Swizzle parameter from struct (forgotten when the code ↵Roland Scheidegger
was refactored)
2005-09-12use ASM_API variable, bug 4415Brian Paul
2005-09-12make lookup_query_object() staticBrian Paul
2005-09-12remove rendundant r,g,b,a vars (bug 4331)Brian Paul
2005-09-11add 1002:5460 M22 X300 cardDave Airlie
2005-09-11fix dri drivers buildDave Airlie
2005-09-11Silence some warnings.Brian Paul
2005-09-10bunch of updatesBrian Paul
2005-09-10put GLUT sources into a separate tarballBrian Paul
2005-09-10Clean-up of sources/Makefile, bug 4111Brian Paul
2005-09-10fix a problem w/ color index mode when CHAN_BITS=16Brian Paul
2005-09-10make some vars staticBrian Paul
2005-09-10fix GLubyte/GLchan inconsistencies (bug 4331)Brian Paul
2005-09-10new demo to test ATI_fragment_shader, not very creative but easy to know if ↵Roland Scheidegger
the output is correct. Tests single-pass as well as multi-pass shader (only pseudo-dependant texture read though, and no tex coord swizzling), src and dst modifiers, src repetition, dst masks, constants, and some ops. Both shaders run succesfully with swrast as well as r200.
2005-09-10add the new drm packets needed for ATI_fragment_shader to the sanity code of ↵Roland Scheidegger
the r200 and radeon driver
2005-09-10add reverse-engeneered register bits needed for ATI_fragment_shader (Dave ↵Roland Scheidegger
Airlie, me)