diff options
author | Brian Paul <[email protected]> | 2010-05-04 17:25:33 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-05-04 17:25:36 -0600 |
commit | c6fdb950e9fdf42fb1d6c837019df23386fffee7 (patch) | |
tree | 6d4565f643b6893dcbe03b64c506ccad8cf8acab /src/mesa/state_tracker/st_texture.h | |
parent | 87022efb4f1e40a70d34beb30754854608a49246 (diff) |
st/mesa: need to pass srcLevel to st_texture_image_copy()
Fixes a regression in mipmap setup.
Diffstat (limited to 'src/mesa/state_tracker/st_texture.h')
-rw-r--r-- | src/mesa/state_tracker/st_texture.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_texture.h b/src/mesa/state_tracker/st_texture.h index 447f091db1f..ef31a1361e3 100644 --- a/src/mesa/state_tracker/st_texture.h +++ b/src/mesa/state_tracker/st_texture.h @@ -205,7 +205,7 @@ st_texture_image_data(struct st_context *st, extern void st_texture_image_copy(struct pipe_context *pipe, struct pipe_resource *dst, GLuint dstLevel, - struct pipe_resource *src, + struct pipe_resource *src, GLuint srcLevel, GLuint face); extern void |