diff options
author | Michal Krol <[email protected]> | 2010-03-15 13:20:37 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2010-03-15 13:22:40 +0100 |
commit | f2bc089d148253d7a411e94257633ce40ec1c6a9 (patch) | |
tree | 3c58d9e6462d58d84bde3d79c8a901441f72258f /src/gallium/auxiliary/util/u_blit.h | |
parent | dbf20a1f0fa7965254aa8a0e2ea35a6b8576fd7d (diff) |
gallium: util_blit_pixels() takes source sampler view as argument.
Diffstat (limited to 'src/gallium/auxiliary/util/u_blit.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_blit.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_blit.h b/src/gallium/auxiliary/util/u_blit.h index a102021529e..2d8cdd25fb9 100644 --- a/src/gallium/auxiliary/util/u_blit.h +++ b/src/gallium/auxiliary/util/u_blit.h @@ -53,6 +53,7 @@ util_destroy_blit(struct blit_state *ctx); extern void util_blit_pixels(struct blit_state *ctx, struct pipe_surface *src, + struct pipe_sampler_view *src_sampler_view, int srcX0, int srcY0, int srcX1, int srcY1, struct pipe_surface *dst, @@ -63,6 +64,7 @@ util_blit_pixels(struct blit_state *ctx, void util_blit_pixels_writemask(struct blit_state *ctx, struct pipe_surface *src, + struct pipe_sampler_view *src_sampler_view, int srcX0, int srcY0, int srcX1, int srcY1, struct pipe_surface *dst, |