diff options
author | Brian <[email protected]> | 2007-08-24 12:08:11 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-08-24 12:10:31 -0600 |
commit | 6ef1bdbdaaf1d30d891475f3dbf27ec791ff40eb (patch) | |
tree | dbec16290118944a8ed6b6c2659a95cccb771a7c /src | |
parent | e648a86601a7cf7a6ddfa7afa69e8c141efc45ad (diff) |
add some warnings about bitmaps/copypixels
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/state_tracker/st_cb_drawpixels.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_drawpixels.c b/src/mesa/state_tracker/st_cb_drawpixels.c index a45700e1db5..e2280cdafa8 100644 --- a/src/mesa/state_tracker/st_cb_drawpixels.c +++ b/src/mesa/state_tracker/st_cb_drawpixels.c @@ -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 */ } |