summaryrefslogtreecommitdiff
path: root/src/mesa/main/depthstencil.c
AgeCommit message (Collapse)Author
2010-10-13Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg
2010-08-22mesa: use driver hook for creating new renderbuffersBrian Paul
2010-07-14mesa: update assertions and fix refcounting in depth/stencil renderbuffer codeBrian Paul
2010-02-19Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg
2010-01-18mesa: Remove unnecessary header from depthstencil.c.Vinson Lee
2009-10-24mesa: move assertion after declarationBrian Paul
2009-10-21mesa: use MESA_FORMAT_X8_Z24 formatBrian Paul
2009-10-08mesa: remove a bunch of gl_renderbuffer fieldsBrian Paul
_ActualFormat is replaced by Format (MESA_FORMAT_x). ColorEncoding, ComponentType, RedBits, GreenBits, BlueBits, etc. are all replaced by MESA_FORMAT_x queries.
2009-02-03mesa: simplify delete_wrapper()Brian Paul
2008-10-01Unify ARB_depth_texture and SGIX_depth_textureIan Romanick
The ARB extension is a superset of the older SGIX extension. Any hardware that can support the SGIX version can also support the ARB version. In Mesa, any driver that supports one also supports the other. This unification just simplifies some bits of code.
2007-12-25mesa: fix a bad cast in put_values_z24.Xiang, Haihao
The values passed to put_values_z24 are GLuint, not GLubyte. fix #13543
2006-04-05Silence minor compiler warnings (-Wextra).Brian Paul
2006-03-26merge from texman branchBrian Paul
2005-11-16Support for combined depth/stencil renderbuffers (GL_EXT_packed_depth_stencil).Brian Paul
depthstencil.c provides wrappers for treating depth/stencil buffers either as regular depth or stencil renderbuffers.