summaryrefslogtreecommitdiff
path: root/src/mesa/main/readpix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main/readpix.c')
-rw-r--r--src/mesa/main/readpix.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/main/readpix.c b/src/mesa/main/readpix.c
index c0912fbe130..324ca9da22a 100644
--- a/src/mesa/main/readpix.c
+++ b/src/mesa/main/readpix.c
@@ -44,6 +44,7 @@
#include "pixeltransfer.h"
#include "state_tracker/st_cb_fbo.h"
+#include "state_tracker/st_cb_readpixels.h"
/**
* Return true if the conversion L=R+G+B is needed.
@@ -863,7 +864,7 @@ read_depth_stencil_pixels(struct gl_context *ctx,
/**
- * Software fallback routine for ctx->Driver.ReadPixels().
+ * Software fallback routine.
* By time we get here, all error checking will have been done.
*/
void
@@ -1173,8 +1174,8 @@ read_pixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format,
if (ctx->Pack.BufferObj)
ctx->Pack.BufferObj->UsageHistory |= USAGE_PIXEL_PACK_BUFFER;
- ctx->Driver.ReadPixels(ctx, x, y, width, height,
- format, type, &clippedPacking, pixels);
+ st_ReadPixels(ctx, x, y, width, height,
+ format, type, &clippedPacking, pixels);
}
void GLAPIENTRY