added glCopyPixels stub
authorBrian <brian.paul@tungstengraphics.com>
Tue, 14 Aug 2007 21:42:40 +0000 (15:42 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Tue, 14 Aug 2007 21:42:40 +0000 (15:42 -0600)
src/mesa/state_tracker/st_cb_drawpixels.c

index 7a89e85..df0b144 100644 (file)
@@ -485,9 +485,23 @@ st_Bitmap(GLcontext *ctx, GLint x, GLint y, GLsizei width, GLsizei height,
 }
 
 
+static void
+st_CopyPixels(GLcontext *ctx, GLint srcx, GLint srcy,
+              GLsizei width, GLsizei height,
+              GLint dstx, GLint dsty, GLenum type)
+{
+   struct st_context *st = ctx->st;
+
+   st_validate_state(st);
+
+   /* XXX to do */
+}
+
+
 
 void st_init_drawpixels_functions(struct dd_function_table *functions)
 {
    functions->DrawPixels = st_DrawPixels;
+   functions->CopyPixels = st_CopyPixels;
    functions->Bitmap = st_Bitmap;
 }