Mesa (master): st: implement glCopyTexImage() for GL_DEPTH24_STENCIL8 internal format

Brian Paul brianp at kemper.freedesktop.org
Tue Apr 7 23:57:40 UTC 2009


Module: Mesa
Branch: master
Commit: 105758105a790dd8466c6be8c232c3f215ca4dee
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=105758105a790dd8466c6be8c232c3f215ca4dee

Author: Brian Paul <brianp at vmware.com>
Date:   Tue Apr  7 17:56:40 2009 -0600

st: implement glCopyTexImage() for GL_DEPTH24_STENCIL8 internal format

---

 src/mesa/state_tracker/st_cb_texture.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/mesa/state_tracker/st_cb_texture.c b/src/mesa/state_tracker/st_cb_texture.c
index 4d8adcd..8013e69 100644
--- a/src/mesa/state_tracker/st_cb_texture.c
+++ b/src/mesa/state_tracker/st_cb_texture.c
@@ -947,7 +947,8 @@ fallback_copy_texsubimage(GLcontext *ctx,
    texDest = st_texture_image_map(ctx->st, stImage, 0, PIPE_TRANSFER_WRITE,
                                   destX, destY, width, height);
 
-   if (baseFormat == GL_DEPTH_COMPONENT) {
+   if (baseFormat == GL_DEPTH_COMPONENT ||
+       baseFormat == GL_DEPTH24_STENCIL8) {
       const GLboolean scaleOrBias = (ctx->Pixel.DepthScale != 1.0F ||
                                      ctx->Pixel.DepthBias != 0.0F);
       GLint row, yStep;
@@ -1057,7 +1058,8 @@ st_copy_texsubimage(GLcontext *ctx,
    st_finish(ctx->st);
 
    /* determine if copying depth or color data */
-   if (texBaseFormat == GL_DEPTH_COMPONENT) {
+   if (texBaseFormat == GL_DEPTH_COMPONENT ||
+       texBaseFormat == GL_DEPTH24_STENCIL8) {
       strb = st_renderbuffer(fb->_DepthBuffer);
    }
    else if (texBaseFormat == GL_DEPTH_STENCIL_EXT) {




More information about the mesa-commit mailing list