summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_zoom.c
AgeCommit message (Expand)AuthorFilesLines
2013-06-05mesa: remove outdated version lines in commentsRico Schüller1-1/+0
2013-04-23mesa: Restore 78-column wrapping of license text in C-style comments.Kenneth Graunke1-3/+4
2013-04-23mesa: Add "OR COPYRIGHT HOLDERS" to license text disclaiming liability.Kenneth Graunke1-1/+1
2013-04-23mesa: Change "BRIAN PAUL" to "THE AUTHORS" in license text.Kenneth Graunke1-1/+1
2013-03-15Replace gl_frag_attrib enum with gl_varying_slot.Paul Berry1-13/+13
2012-11-06swrast: fix MSVC signed/unsigned warningsBrian Paul1-2/+2
2012-09-05Don't cast the return value of malloc/reallocMatt Turner1-2/+2
2012-09-01mesa: s/CALLOC/calloc/Brian Paul1-1/+1
2012-02-24swrast: define, use SWRAST_MAX_WIDTH/HEIGHTBrian Paul1-3/+3
2012-02-24swrast: remove MAX_WIDTH arrays in s_zoom.cBrian Paul1-2/+14
2011-12-24swrast: rewrite glDrawPixels(GL_DEPTH) with zoomBrian Paul1-24/+13
2011-12-08swrast: use malloc instead of MAX_WIDTH arrays in glCopyPixels, zoom codeBrian Paul1-1/+9
2011-11-15mesa: replace GLstencil with GLubyteBrian Paul1-2/+2
2011-10-01mesa: s/INLINE/inline/Brian Paul1-1/+1
2010-10-13Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg1-7/+7
2010-03-03swrast: Remove _swrast_write_zoomed_index_span and associated codeIan Romanick1-46/+2
2010-02-19mesa: replace old MEMCPY macro with memcpyBrian Paul1-4/+4
2008-09-18mesa: prefix a bunch of #include lines with "main/".Brian Paul1-4/+4
2008-06-16mesa: allocate pixel zoom arrays on heap, not stackBrian Paul1-10/+17
2007-06-29simplify INIT_SPAN codeBrian1-1/+1
2007-06-29Undo some prev glDraw/CopyPixel changes which fixed a bug in which colors wer...Brian1-0/+1
2007-06-21fix rgba pointer bug hit on zoomed+fogged glDrawPixelsBrian1-10/+7
2007-06-20copy wpos attrib info into zoomed span (fixes fog perspective correction prob...Brian1-2/+4
2007-05-20Overhaul/simplify SWvertex and SWspan attribute handling.Brian1-18/+14
2007-04-14fix negative zoom factor bug (10636), more commentsBrian1-3/+11
2007-04-07fix references to non-existant sz4 fieldRichard Hughes1-2/+2
2007-02-22Merge branch 'origin' into glsl-compiler-1Brian1-6/+6
2007-02-02New span attrStart/attrStepX/attrStepY fields to replace fog, specular, etc. ...Brian1-2/+3
2007-02-01New SWspanarrays attribs[] array.Brian1-5/+5
2007-01-23silence C++ warningsBrian1-8/+8
2006-10-11use GLvoid * for _swrast_write_zoomed_rgb/rgba_span() functionsBrian Paul1-7/+5
2006-10-11support for runtime renderbuffer depthsBrian Paul1-24/+81
2006-10-01New SWspan and SWspanarrays typedefs.Brian Paul1-7/+7
2006-09-25Initial work for supporting different renderbuffer color depths at runtime.Brian Paul1-0/+12
2005-11-16Use new gl_framebuffer _Depth/_StencilBuffer fields instead ofBrian Paul1-2/+1
2005-09-29Rewrite much of the pixel zoom code.Brian Paul1-271/+218
2005-09-28Initial work for GL_EXT_packed_depth_stencil extension.Brian Paul1-5/+30
2005-09-21replace GLdepth with GLuint and remove GLdepthBrian Paul1-4/+3
2003-08-23glDrawPixels(GL_DEPTH_COMPONENT) with glPixelZoom didn't workBrian Paul1-15/+74
2003-06-05Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything.Ian Romanick1-1/+0
2003-03-25replace _mesa_ prefix with _swrast_, remove s_histogram.[ch]Brian Paul1-10/+10
2003-03-01Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch]Brian Paul1-2/+2
2003-02-25casts to silence g++ warningsBrian Paul1-5/+5
2003-02-21fix zoom/clipping bug 689964Brian Paul1-1/+6
2003-02-17fixed bad zoomed.zStep assignment (bug 687811)Brian Paul1-3/+3
2002-12-05properly handle very wide imagesBrian Paul1-22/+41
2002-10-24Header file clean-up:Brian Paul1-2/+2
2002-08-07struct sw_span is again allocated on the stack, but the arrays of spanBrian Paul1-20/+23
2002-04-19Allocate a sw_span struct in the swrast context instead of allocating itBrian Paul1-2/+2
2002-04-19casts to fix GLint/GLuint mismatchesBrian Paul1-11/+12