diff options
author | Brian Paul <[email protected]> | 2011-03-23 09:04:22 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-03-23 09:04:22 -0600 |
commit | 7ecb61c30c4984a8513b306b640f9d274d8ecf61 (patch) | |
tree | 4ccf0c419b6f87a767c27a5076e2807c7d756d35 /src/mesa/main/pixel.c | |
parent | f6970872c083a813a6d6ce9ce0cde2375da6dcbc (diff) |
mesa: remove _MESA_NEW_TRANSFER_STATE
Diffstat (limited to 'src/mesa/main/pixel.c')
-rw-r--r-- | src/mesa/main/pixel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/pixel.c b/src/mesa/main/pixel.c index 195fa234be2..da99c9b6f35 100644 --- a/src/mesa/main/pixel.c +++ b/src/mesa/main/pixel.c @@ -617,7 +617,7 @@ update_image_transfer_state(struct gl_context *ctx) */ void _mesa_update_pixel( struct gl_context *ctx, GLuint new_state ) { - if (new_state & _MESA_NEW_TRANSFER_STATE) + if (new_state & _NEW_PIXEL) update_image_transfer_state(ctx); } |