aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main/buffers.c
Commit message (Collapse)AuthorAgeFilesLines
* fix bug 13978: glDrawBuffersARB() didn't set all necessary stateBrian2008-01-091-0/+2
|
* Replace gl_framebuffer's _ColorDrawBufferMask with _ColorDrawBufferIndexesBrian2008-01-061-45/+44
| | | | | | | Each array element is now a BUFFER_x token rather than a BUFFER_BIT_x bitmask. The number of active color buffers is specified by _NumColorDrawBuffers. This builds on the previous DrawBuffer changes and will help with drivers implementing GL_ARB_draw_buffers.
* Simplify ctx->_NumColorDrawBuffers, _ColorDrawBuffers and fix bug 13835.Brian2008-01-061-2/+3
| | | | | | | | | | | These fields are no longer indexed by shader output. Now, we just have a simple array of renderbuffer pointers. If the shader writes to gl_FragData[i], send those colors to the N _ColorDrawBuffers. Otherwise, replicate the single gl_FragColor (or the fixed-function color) to the N _ColorDrawBuffers. A few more changes and simplifications can follow from this...
* additional GL_COLOR_ATTACHMENTx_EXT cases (bug 13767)Brian2008-01-021-0/+8
|
* additional GL_COLOR_ATTACHMENTx_EXT cases (bug 13767)Brian2008-01-011-0/+8
|
* Don't call the driver clear hook when the effective scissor rectangle is empty.Michel Dänzer2007-10-171-1/+3
|
* remove dead code left over after fixing GL_READ/DRAW_BUFFER state issuesBrian2007-08-181-47/+0
|
* Rework the GL_READ_BUFFER, GL_DRAW_BUFFER state repairs that Roland ↵Brian2007-08-161-5/+81
| | | | | | | | | previously did. Basically, in update_framebuffer() (which should be called after an FBO is bound with MakeCurrent or BindFramebuffer) we check if the FBO is a window-system FBO. If it is, update the FBO's GL_READ/DRAW_BUFFER state according to the context state. Old code still in place but disabled with #if 0 / #endif.
* update comments, etc related to Read/DrawBuffer stateBrian2007-08-161-2/+5
|
* fix bogus recently introduced function param commentsRoland Scheidegger2007-07-201-2/+0
|
* fix mesa's handling of fbo's / window fb (again)Roland Scheidegger2007-07-191-23/+49
| | | | | | | | Make sure the relevant fields in window fbs get updated at appropriate time (those are NOT the same as fbos!!!), and fix up related code accordingly. This is a bit ugly, but there's a reason the issues section in EXT_fbo is a couple hundred pages long... Hopefully correct now.
* more fixes for mesa's fbo handling (fixes tests/fbotest1/2)Roland Scheidegger2007-07-191-3/+2
|
* In supported_buffer_bitmask(), use framebuffer's visual, not context's visualBrian2007-06-081-28/+23
|
* no-op clear if buffer width or height is zero (bug 7205)Brian2007-03-151-0/+3
|
* minor change in _mesa_ResizeBuffersMESA()Brian Paul2006-11-021-1/+2
|
* Remove x/y/width/height parameters from Clear functions.Brian Paul2006-11-011-6/+1
|
* check if ctx->Driver.GetBufferSize==NULL and no-opBrian Paul2006-10-171-0/+4
|
* updated comments, mark GetBufferSize() and ResizeBuffers() as obsoleteBrian Paul2006-10-151-6/+15
|
* resize buffers in MakeCurrentKeith Whitwell2006-09-221-4/+10
|
* set per-context GL_DRAW_BUFFER state regardless of currently bound FBOBrian Paul2006-06-021-6/+4
|
* Silence minor compiler warnings (-Wextra).Brian Paul2006-04-051-3/+4
|
* minor clean-upBrian Paul2006-03-291-2/+3
|
* check for incomplete FBO in _mesa_Clear()Brian Paul2006-03-251-1/+7
|
* slightly improved error messageBrian Paul2006-03-201-2/+2
|
* properly notify driver on scissor change in MakeCurrentKeith Whitwell2005-12-301-13/+20
|
* Replace gl_framebuffer's _ColorReadBufferMask with _ColorReadBufferIndex,Brian Paul2005-09-231-29/+31
| | | | Streamline the _mesa_update_framebuffer() function a bit.
* updated commentBrian Paul2005-09-191-2/+2
|
* Replace GLuint with GLbitfield where appropriate. Also replace GLuintBrian Paul2005-09-151-13/+14
| | | | with GLboolean in a few places.
* minor tweaks to _mesa_ResizeBuffersMESA()Brian Paul2005-09-071-5/+9
|
* just changes/updates to commentsBrian Paul2005-09-061-10/+11
|
* Just additional comments.Brian Paul2005-08-311-0/+13
|
* remove dead code, update commentsBrian Paul2005-08-311-10/+5
|
* remove OLD_RENDERBUFFER stuffBrian Paul2005-07-011-6/+2
|
* Major check-in of changes for GL_EXT_framebuffer_object extension.Brian Paul2005-05-041-275/+273
| | | | | | | Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested.
* Rename _mesa_update_buffers() to _mesa_update_draw_buffer_bounds() and doBrian Paul2005-02-261-30/+48
| | | | | additional checks. Replace _mesa_init_buffers() with _mesa_init_scissor() and _mesa_init_multisample().
* initial support for GL_EXT_framebuffer_objectBrian Paul2005-02-091-55/+139
|
* silence a variety of warnings found with g++ 3.4.2Brian Paul2004-12-031-5/+5
|
* added support for GL_ARB_draw_buffersBrian Paul2004-10-021-193/+200
|
* s/_mesa_get_current_context()/GET_CURRENT_CONTEXT()/Brian Paul2004-06-111-2/+2
|
* Implemented support for software-based AUX color buffers.Brian Paul2004-03-211-36/+36
| | | | | | Only available with Xlib driver for now. Assorted clean-ups related to Draw/ReadBuffer(). Renamed FRONT_LEFT_BIT -> DD_FRONT_LEFT_BIT, etc.
* more descriptive error stringsBrian Paul2004-01-301-9/+9
|
* Added GLAPIENTRY decorations for all first level OpenGL API function entryKendall Bennett2003-10-211-8/+8
| | | | | points so that the calling conventions will work correctly with the assembler stubs with the Open Watcom compiler.
* Merge Jose's documentation and core Mesa changes from embedded branchKeith Whitwell2003-07-171-40/+178
|
* comments regarding window sizingBrian Paul2003-06-041-4/+7
|
* s/DrawBuffer/ReadBuffer/ in _mesa_ResizeBuffersMESA (PHil Brown)Brian Paul2003-06-021-2/+2
|
* don't try to clear non-existant buffersBrian Paul2003-04-291-8/+12
|
* Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch]Brian Paul2003-03-011-4/+3
| | | | | Moved type conversion and interpolation macros into macros.h Updated all the files that used to include mmath.h
* Header file clean-up:Brian Paul2002-10-241-6/+2
| | | | | | | | 1. Remove all.h and PC_HEADER junk. 2. Rolled mem.c and mem.h into imports.c and imports.h 3. Include imports.h instead of mem.h Restore _mesa_create/initialize_context() to be like they were in 4.0.4 New wrappers for a few std C functions: _mesa_atoi(), _mesa_strstr(), etc.
* Another round of glRead/DrawBuffer() clean-ups and simplifications.Brian Paul2002-10-111-27/+81
| | | | | | | Replaced ctx->Color._DriverDrawBuffer with swrast->CurrentBuffer. Replaced ctx->Pixel._DriverReadBuffer with ctx->Pixel._ReadSrcMask. swrast->Driver.SetBuffer() takes FRONT/BACK_LEFT/RIGHT_BIT values now. Added tokens and code for GL_AUX buffers, for completeness.
* undo previous check-in (check if ctx->Color.DrawBuffer == mode)Brian Paul2002-10-111-4/+1
|