diff options
author | Roland Scheidegger <[email protected]> | 2010-03-15 21:55:08 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2010-03-16 11:25:12 +0100 |
commit | 8f55a95178069d5e8b18647e6b675fc403d68073 (patch) | |
tree | b08c04fcc85e2c3d59ed15aff39c0f528933674c /src/gallium/auxiliary/util/u_blit.h | |
parent | e4b8a307b25146202b1fb64339b307bde5ec3b30 (diff) |
gallium: change remaining util functions to use cso sampler views
changes arguments of util_blit_pixels_tex and util_gen_mipmap to
struct pipe_sampler_view * instead of struct pipe_texture *.
Diffstat (limited to 'src/gallium/auxiliary/util/u_blit.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_blit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_blit.h b/src/gallium/auxiliary/util/u_blit.h index 2d8cdd25fb9..1ebe65b4558 100644 --- a/src/gallium/auxiliary/util/u_blit.h +++ b/src/gallium/auxiliary/util/u_blit.h @@ -75,7 +75,7 @@ util_blit_pixels_writemask(struct blit_state *ctx, extern void util_blit_pixels_tex(struct blit_state *ctx, - struct pipe_texture *tex, + struct pipe_sampler_view *src_sampler_view, int srcX0, int srcY0, int srcX1, int srcY1, struct pipe_surface *dst, |