summaryrefslogtreecommitdiff
path: root/src/mesa/main/blit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main/blit.c')
-rw-r--r--src/mesa/main/blit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/blit.c b/src/mesa/main/blit.c
index 116c012b212..8f05d34dfce 100644
--- a/src/mesa/main/blit.c
+++ b/src/mesa/main/blit.c
@@ -40,6 +40,7 @@
#include "macros.h"
#include "state.h"
+#include "state_tracker/st_cb_blit.h"
/** Set this to 1 to debug/log glBlitFramebuffer() calls */
#define DEBUG_BLIT 0
@@ -572,11 +573,10 @@ blit_framebuffer(struct gl_context *ctx,
return;
}
- assert(ctx->Driver.BlitFramebuffer);
- ctx->Driver.BlitFramebuffer(ctx, readFb, drawFb,
- srcX0, srcY0, srcX1, srcY1,
- dstX0, dstY0, dstX1, dstY1,
- mask, filter);
+ st_BlitFramebuffer(ctx, readFb, drawFb,
+ srcX0, srcY0, srcX1, srcY1,
+ dstX0, dstY0, dstX1, dstY1,
+ mask, filter);
}