Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Initial work for GL_EXT_packed_depth_stencil extension. | Brian Paul | 2005-09-28 | 15 | -66/+373 |
| | | | | glReadPixels done, glDrawPixels mostly done. | ||||
* | change initialization of rb->DepthBits | Brian Paul | 2005-09-28 | 1 | -2/+4 |
| | |||||
* | added _mesa_scale_and_bias_depth() | Brian Paul | 2005-09-28 | 2 | -2/+20 |
| | |||||
* | tweak glAccum error checking | Brian Paul | 2005-09-27 | 1 | -5/+5 |
| | |||||
* | generate GL_INVALID_OPERATION in glAccum if read/draw buffers aren't the same | Brian Paul | 2005-09-27 | 1 | -1/+8 |
| | |||||
* | Lift all the format/type error checking out of the _swrast_Draw/Read/CopyPixels | Brian Paul | 2005-09-27 | 1 | -5/+110 |
| | | | | functions into the _mesa_Draw/Read/CopyPixels functions. | ||||
* | Committing in . | Jouk Jansen | 2005-09-23 | 2 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | 1) change compilation on VMS to use IEEE floating points 2) one more problem with _mesa_sprintf solved Modified Files: Mesa/docs/README.VMS Mesa/progs/demos/descrip.mms Mesa/progs/tests/descrip.mms Mesa/progs/util/descrip.mms Mesa/progs/xdemos/descrip.mms Mesa/src/glu/mesa/descrip.mms Mesa/src/glu/sgi/descrip.mms Mesa/src/glut/glx/descrip.mms Mesa/src/mesa/array_cache/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms Mesa/src/mesa/glapi/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/main/texobj.c Mesa/src/mesa/math/descrip.mms Mesa/src/mesa/shader/descrip.mms Mesa/src/mesa/shader/grammar/descrip.mms Mesa/src/mesa/shader/slang/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/swrast_setup/descrip.mms Mesa/src/mesa/tnl/descrip.mms ---------------------------------------------------------------------- | ||||
* | remove printf | Brian Paul | 2005-09-23 | 1 | -1/+0 |
| | |||||
* | Replace gl_framebuffer's _ColorReadBufferMask with _ColorReadBufferIndex, | Brian Paul | 2005-09-23 | 3 | -61/+50 |
| | | | | Streamline the _mesa_update_framebuffer() function a bit. | ||||
* | Add Wrapper field to gl_renderbuffer. Used for wrapping one renderbuffer | Brian Paul | 2005-09-23 | 2 | -88/+97 |
| | | | | | | | | with another, such as wrapping a hardware/win-sys RGB renderbuffer with a software-based alpha buffer. Previous alpha buffer wrapping was conflicting with the X driver's xmesa_renderbuffer structure containment/inheritance. That lead to memory corruption. | ||||
* | Replace gl_renderbuffer.ComponentSizes[] with separate RedBits, GreenBits, | Brian Paul | 2005-09-22 | 4 | -41/+46 |
| | | | | BlueBits, etc fields. | ||||
* | s/GL_DEPTH_BITS/GL_TEXTURE_DEPTH_SIZE_ARB/ in _mesa_GetTexLevelParameteriv() | Brian Paul | 2005-09-21 | 1 | -1/+1 |
| | |||||
* | Remove ACCUM_BITS. | Brian Paul | 2005-09-21 | 3 | -22/+4 |
| | |||||
* | replace GLdepth with GLuint and remove GLdepth | Brian Paul | 2005-09-21 | 1 | -9/+0 |
| | |||||
* | change mask[] test in put_mono_row_uint() | Brian Paul | 2005-09-20 | 1 | -3/+11 |
| | |||||
* | replace STENCIL_BITS with stencilMax value | Brian Paul | 2005-09-20 | 1 | -6/+4 |
| | |||||
* | remove STENCIL_MAX | Brian Paul | 2005-09-20 | 1 | -2/+0 |
| | |||||
* | change location of ffs() code for windows | Brian Paul | 2005-09-20 | 1 | -17/+10 |
| | |||||
* | init a=0 | Brian Paul | 2005-09-19 | 1 | -1/+1 |
| | |||||
* | s/GLchan/GLubyte/, fix error string, add comment | Brian Paul | 2005-09-19 | 1 | -2/+3 |
| | |||||
* | updated comment | Brian Paul | 2005-09-19 | 1 | -2/+2 |
| | |||||
* | additional wrapper updates, bug 4468 | Brian Paul | 2005-09-19 | 6 | -50/+111 |
| | |||||
* | use mesa import wrappers, bug 4468 | Brian Paul | 2005-09-16 | 5 | -7/+22 |
| | |||||
* | Replace GLuint with GLbitfield where appropriate. Also replace GLuint | Brian Paul | 2005-09-15 | 7 | -67/+68 |
| | | | | with GLboolean in a few places. | ||||
* | Remove a bunch texel fetch functions that can be handled by the new | Brian Paul | 2005-09-15 | 2 | -614/+131 |
| | | | | adaptor functions. | ||||
* | New set_fetch_functions() to set a gl_texture_image's FetchTexel functions | Brian Paul | 2005-09-15 | 2 | -48/+93 |
| | | | | | | | from the gl_texture_format's functions. Added "adaptor" functions to allow sampling a float-valued texture with GLchans and vice versa. This will allow trimming down the number of texture fetch routines. | ||||
* | Remove _tnl_MakeCurrent() and the unused ctx->Driver.MakeCurrent() callback. | Brian Paul | 2005-09-14 | 2 | -13/+0 |
| | |||||
* | clean-up some _mesa_make_current() code | Brian Paul | 2005-09-14 | 1 | -35/+32 |
| | |||||
* | Move _mesa_add_soft_renderbuffers() from framebuffer.c to renderbuffer.c | Brian Paul | 2005-09-13 | 4 | -107/+107 |
| | | | | Update some comments, code, etc. | ||||
* | print version with debug info | Brian Paul | 2005-09-13 | 1 | -2/+4 |
| | |||||
* | Replace ctx->Driver.StencilOp/Func/Mask() functions with | Brian Paul | 2005-09-13 | 3 | -33/+33 |
| | | | | ctx->Driver.Stencil*Separate() functions. | ||||
* | OpenGL 2.0's two-sided stencil feature wasn't implemented correctly. | Brian Paul | 2005-09-13 | 6 | -54/+152 |
| | | | | | See comment near top of stencil.c for info about OpenGL 2.0 vs. GL_EXT_stencil_two_side. | ||||
* | Use GLuint/GLint intead of GLstencil for stencil state. | Brian Paul | 2005-09-13 | 2 | -26/+24 |
| | |||||
* | Move the ctx->FirstTimeCurrent initialization | Brian Paul | 2005-09-13 | 2 | -5/+4 |
| | |||||
* | make lookup_query_object() static | Brian Paul | 2005-09-12 | 1 | -1/+1 |
| | |||||
* | remove rendundant r,g,b,a vars (bug 4331) | Brian Paul | 2005-09-12 | 1 | -1/+0 |
| | |||||
* | make some vars static | Brian Paul | 2005-09-10 | 1 | -3/+7 |
| | |||||
* | fix GLubyte/GLchan inconsistencies (bug 4331) | Brian Paul | 2005-09-10 | 1 | -77/+121 |
| | |||||
* | don't generate selection hits for glBitmap, glDraw/CopyPixels. Misc clean-ups | Brian Paul | 2005-09-09 | 1 | -89/+72 |
| | |||||
* | Keep NumTemporaries uptodate. | Keith Whitwell | 2005-09-08 | 1 | -0/+7 |
| | | | | Make sure oC alpha is populated when separate_specular enabled. | ||||
* | check for either GL_ARB_depth_texture or GL_SGIX_depth_texture in a few places | Brian Paul | 2005-09-08 | 3 | -11/+12 |
| | |||||
* | new comment | Brian Paul | 2005-09-07 | 1 | -0/+1 |
| | |||||
* | minor tweaks to _mesa_ResizeBuffersMESA() | Brian Paul | 2005-09-07 | 1 | -5/+9 |
| | |||||
* | minor formatting fix | Brian Paul | 2005-09-06 | 1 | -2/+1 |
| | |||||
* | just changes/updates to comments | Brian Paul | 2005-09-06 | 1 | -10/+11 |
| | |||||
* | remove DEFARRAY, CHECKARRAY stuff | Brian Paul | 2005-09-06 | 2 | -78/+6 |
| | |||||
* | Windows mesa.def file had been moved to the drivers dir tree some time ago. ↵ | Karl Schultz | 2005-09-05 | 1 | -491/+0 |
| | | | | This copy is not needed. | ||||
* | fudge set_component_sizes() a bit, see comments | Brian Paul | 2005-09-03 | 1 | -1/+5 |
| | |||||
* | Remove last remnants of pre-renderbuffer code. | Brian Paul | 2005-09-03 | 4 | -11/+2 |
| | |||||
* | comments | Brian Paul | 2005-09-02 | 1 | -2/+2 |
| |