summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_manager.c
AgeCommit message (Collapse)Author
2010-03-15st/mesa: Update the comments in st_manager.c.Chia-I Wu
2010-03-14st/mesa: Fix handling of FBO.Chia-I Wu
FBOs are created by st_new_framebuffer and cannot be casted to st_framebuffer.
2010-03-13st/mesa: Set revalidate in st_framebuffer_update_attachments.Chia-I Wu
There are two conditions that a validation is required. One is when the the framebuffer becomes invalid. The other is when we request for textures that we did not request before.
2010-03-12st/mesa: Check the format before adding depth/stencil buffers.Chia-I Wu
The format might have depth bits, stencil bits, or both. Add the renderbuffers as needed.
2010-03-12st/mesa: Implement st_api.h.Chia-I Wu
There is currently no user of this new interface. As the inteface can coexist with st_public.h, everthing should work as before. ST_TEXTURE_2D is both defined by st_public.h and st_api.h. Reorder the headers in st/dri to avoid conflicts.