diff options
author | Marek Olšák <[email protected]> | 2010-05-25 23:05:29 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-05-25 23:32:25 +0200 |
commit | 876de34c91f02edb3260ac34b43e96dfb5c5b9c4 (patch) | |
tree | 2d8feaf034d9321a30b4e52b307a046c85ef5dfe /src/gallium/drivers/r300/r300_context.c | |
parent | 59e51d9640c242a7c919472d935a91889c7840c9 (diff) |
r300g,util: remove pipe_surface from the util_blitter_copy interface and clean up
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index 406b812f6ae..44120c753a4 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -186,7 +186,7 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen, r300->context.destroy = r300_destroy_context; r300->context.clear = r300_clear; - r300->context.resource_copy_region = r300_surface_copy; + r300->context.resource_copy_region = r300_resource_copy_region; r300->context.resource_fill_region = r300_resource_fill_region; if (r300screen->caps.has_tcl) { |