add some warnings about bitmaps/copypixels
authorBrian <brian.paul@tungstengraphics.com>
Fri, 24 Aug 2007 18:08:11 +0000 (12:08 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Fri, 24 Aug 2007 18:10:31 +0000 (12:10 -0600)
src/mesa/state_tracker/st_cb_drawpixels.c

index a45700e..e2280cd 100644 (file)
@@ -568,6 +568,7 @@ st_Bitmap(GLcontext *ctx, GLint x, GLint y, GLsizei width, GLsizei height,
 
    st_validate_state(st);
 
+   fprintf(stderr, "st_Bitmap not implemented yet\n");
    /* XXX to do */
 }
 
@@ -581,6 +582,7 @@ st_CopyPixels(GLcontext *ctx, GLint srcx, GLint srcy,
 
    st_validate_state(st);
 
+   fprintf(stderr, "st_CopyPixels not implemented yet\n");
    /* XXX to do */
 }