summaryrefslogtreecommitdiffstats
path: root/src/mesa/swrast
Commit message (Collapse)AuthorAgeFilesLines
* Initial work for GL_EXT_packed_depth_stencil extension.Brian Paul2005-09-284-25/+243
| | | | glReadPixels done, glDrawPixels mostly done.
* Lift all the format/type error checking out of the _swrast_Draw/Read/CopyPixelsBrian Paul2005-09-273-168/+38
| | | | functions into the _mesa_Draw/Read/CopyPixels functions.
* glDraw/CopyPixels of stencil data didn't obey the stencil write mask. Fixed.Brian Paul2005-09-261-2/+18
|
* Committing in .Jouk Jansen2005-09-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 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 ----------------------------------------------------------------------
* fix clipped glReadPixels bugBrian Paul2005-09-231-0/+3
|
* Replace gl_renderbuffer.ComponentSizes[] with separate RedBits, GreenBits,Brian Paul2005-09-221-1/+1
| | | | BlueBits, etc fields.
* When testing visual attributes, use the Draw/Read buffer, not the context.Brian Paul2005-09-223-27/+29
|
* fix a debug messageBrian Paul2005-09-221-1/+1
|
* changed a renderbuffer checkBrian Paul2005-09-221-2/+1
|
* add missing scale factor in _swrast_read_depth_span_float()Brian Paul2005-09-211-1/+1
|
* Remove ACCUM_BITS.Brian Paul2005-09-211-1/+1
|
* replace GLdepth with GLuint and remove GLdepthBrian Paul2005-09-219-32/+24
|
* s/programss/programs/Brian Paul2005-09-201-1/+1
|
* compute z[i] as GLuintBrian Paul2005-09-201-2/+2
|
* some improvements to _swrast_clear_depth_buffer()Brian Paul2005-09-201-16/+13
|
* remove unneeded sizeof(GLdepth) testBrian Paul2005-09-201-2/+1
|
* Change zLeft and zval to GLuint. Seems to fix 32-bit Z computationBrian Paul2005-09-202-7/+10
|
* remove STENCIL_MAXBrian Paul2005-09-201-4/+6
|
* additional wrapper updates, bug 4468Brian Paul2005-09-194-14/+14
|
* Fix potential segfault when trying to read pixels outside renderbuffer bounds.Brian Paul2005-09-168-22/+69
| | | | Use _swrast_get_values() which does clipping.
* remove unused _swrast_read_depth_span()Brian Paul2005-09-161-44/+31
|
* lots of little clean-ups, improvementsBrian Paul2005-09-161-63/+63
|
* change some commentsBrian Paul2005-09-161-5/+4
|
* pass mask=NULL to write all pixels in clear_ci_buffer_with_masking()Brian Paul2005-09-161-9/+8
|
* use mesa import wrappers, bug 4468Brian Paul2005-09-161-2/+2
|
* Rework the texture filtering functions a bit.Brian Paul2005-09-167-128/+103
| | | | No need to pass the texture unit number as an argument.
* replace a couple macros with inlined functionsBrian Paul2005-09-161-60/+48
|
* more GLuint->GLbitfield changesBrian Paul2005-09-163-8/+8
|
* Replace GLuint with GLbitfield where appropriate. Also replace GLuintBrian Paul2005-09-154-12/+12
| | | | with GLboolean in a few places.
* Code clean-ups, reorg.Brian Paul2005-09-151-184/+153
|
* updated commentsBrian Paul2005-09-151-11/+9
|
* Update includes post-splitting of s_texture.cBrian Paul2005-09-158-9/+3
|
* Split the s_texture.c file into two new files:Brian Paul2005-09-155-1431/+1451
| | | | | s_texcombine.c - for texture combining/application s_texfilter.c - for texture sampling/filtering
* OpenGL 2.0's two-sided stencil feature wasn't implemented correctly.Brian Paul2005-09-131-1/+1
| | | | | See comment near top of stencil.c for info about OpenGL 2.0 vs. GL_EXT_stencil_two_side.
* Clear either 8 or 16-bit stencil buffers.Brian Paul2005-09-131-27/+66
|
* fix some bugs with handling of GL_DOT4_ATI, GL_DOT3_ATI and GL_DOT2_ADD_ATI ↵Roland Scheidegger2005-09-091-5/+9
| | | | ATI_fs instructions.
* fix precision problem in depth clearing (bug 4395)Brian Paul2005-09-081-4/+10
|
* fix bug with ATI_fragment_shader in swrast (need to copy all 4 values due to ↵Roland Scheidegger2005-09-071-6/+4
| | | | later applied srcRep)
* minor clean-up of texture_combine()Brian Paul2005-09-061-12/+9
|
* don't use DEFARRAY/CHECKARRAY stuffBrian Paul2005-09-063-11/+3
|
* remove obsolete CurrentBufferBitBrian Paul2005-09-052-6/+0
|
* remove unused varBrian Paul2005-09-051-1/+0
|
* Remove last remnants of pre-renderbuffer code.Brian Paul2005-09-039-259/+11
|
* Check for ATI_fragment_shader enabledDave Airlie2005-09-021-1/+2
|
* ATI_fragment_shader fixes: fix bug in passTexCoord (caused by recent ↵Roland Scheidegger2005-09-022-36/+37
| | | | changes). Fix sampling from wrong texture unit. Apply swizzling before texture sampling, and hopefully get non-projected coordinates from swrast. (still does not work at all with sw doom3, way too dark just the same as with the doom3 arb2 path)
* add error checking to the GL_ATI_FRAGMENT_SHADER entrypoints. Fix bug with ↵Roland Scheidegger2005-09-021-35/+31
| | | | scope of ati fragment shader constants. Fix issues with specifying color/alpha instructions not pair-wise. Change internal representation of the shader (to better fit how the extension works, should make driver implementations simpler, and saves some memory). (still doesn't work correctly with doom3 and swrast, but not worse than before)
* Just additional comments.Brian Paul2005-08-311-1/+7
|
* Rearrange the code related to GL_ARB_occlusion_object to generalize queryBrian Paul2005-08-273-16/+19
| | | | objects for future types of queries.
* removed GL_HP_occlusion_test extensionBrian Paul2005-08-254-25/+9
|
* also check for texture border in sample_linear_2d()Brian Paul2005-08-251-2/+3
|