summaryrefslogtreecommitdiff
path: root/src/mesa/main/texrender.c
AgeCommit message (Collapse)AuthorFilesLines
2009-10-08mesa: remove a bunch of gl_renderbuffer fieldsBrian Paul1-12/+5
_ActualFormat is replaced by Format (MESA_FORMAT_x). ColorEncoding, ComponentType, RedBits, GreenBits, BlueBits, etc. are all replaced by MESA_FORMAT_x queries.
2009-10-05mesa: use FetchTexelf() instead of FetchTexelc()Brian Paul1-3/+8
2009-09-30mesa: move texel fetch/store into new texfetch.[ch] filesBrian Paul1-1/+1
2009-09-30mesa: replace gl_texture_format with gl_formatBrian Paul1-5/+5
Now gl_texture_image::TexFormat is a simple MESA_FORMAT_x enum. ctx->Driver.ChooseTexture format also returns a MESA_FORMAT_x. gl_texture_format will go away next.
2009-09-27mesa: fix render buffer _BaseFormat assignmentBrian Paul1-7/+1
2009-09-27mesa: use more mesa format functionsBrian Paul1-6/+9
2009-09-27mesa: use _mesa_get_texel_store_func()Brian Paul1-1/+1
2009-09-24mesa: replace assertion with no-op function assignmentBrian Paul1-1/+12
2009-05-19mesa: assign trb->Base.StencilBits in update_wrapper().Brian Paul1-0/+1
When we render to a depth/stencil texture there are stencil bits.
2009-01-26mesa: add missing texture_put_row_rgb() function in texrender.cRobert Ellison1-0/+54
The wrap_texture() function doesn't set the renderbuffer PutRowRGB() method, which is used to implement DrawPixels(). This fix adds an implementation of this method.
2009-01-05mesa: add GLushort cases for render to texture (Z-buffers)Brian Paul1-2/+50
2008-09-21mesa: Silence compiler warnings on Windows.Michal Krol1-4/+4
2007-05-16Initial implementation of MESA_texture_arrayIan Romanick1-13/+32
Shadow sampling from texture arrays is still not implemented. Everything else should be there, though.
2007-04-02use _mesa_reference_renderbuffer() in a few more placesBrian1-1/+1
2006-04-06Replace MESA_FORMAT_DEPTH_COMPONENT_FLOAT32 with 32-bit integer format.Brian Paul1-3/+74
This allows render to depth texture (we don't support floating pt. Z buffers). Rename MESA_FORMAT_DEPTH_COMPONENT16/32 as MESA_FORMAT_Z16/32. Software fallback for glCopyTexImage now uses integer temporary image instead of float, eliminates a lot of float/int conversions.
2006-03-29New code for rendering to depth/stencil textures.Brian Paul1-68/+178
Re-org of the renderbuffer wrapper code.
2006-03-26merge from texman branchmesa_20060325Brian Paul1-5/+15
2006-03-20Lots of changes/fixes for rendering to framebuffer objects.Brian Paul1-15/+34
- When deleting texture objects, unbind from FBOs if necessary. - Changed driver hooks for starting/ending render to texture. - Now properly handle case where gl[Copy]TexImage() is called after glFramebufferTexture[123]D(). That didn't work before.
2005-12-01Added FinishRenderTexture() device driver function to indicate whenBrian Paul1-2/+4
rendering to a texture has likely completed. Fixed refcount issue in texture renderbuffer wrapper.
2005-10-05In gl_texture_image replace IntFormat with InternalFormat and Format withBrian Paul1-1/+1
_BaseFormat to be consistant with gl_renderbuffer.
2005-10-03finish up some missing codeBrian Paul1-2/+24
2005-06-07fix GL_ALPHA render-to-texture problem (Jon Smirl)Brian Paul1-0/+3
2005-05-04Major check-in of changes for GL_EXT_framebuffer_object extension.Brian Paul1-0/+197
Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested.