summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nvc0/nvc0_screen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/nvc0/nvc0_screen.h')
-rw-r--r--src/gallium/drivers/nvc0/nvc0_screen.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gallium/drivers/nvc0/nvc0_screen.h b/src/gallium/drivers/nvc0/nvc0_screen.h
index 69cddf2c9b0..1387d67a273 100644
--- a/src/gallium/drivers/nvc0/nvc0_screen.h
+++ b/src/gallium/drivers/nvc0/nvc0_screen.h
@@ -19,7 +19,7 @@
struct nvc0_context;
-struct nvc0_blitctx;
+struct nvc0_blitter;
struct nvc0_screen {
struct nouveau_screen base;
@@ -39,7 +39,7 @@ struct nvc0_screen {
struct nouveau_heap *text_heap;
struct nouveau_heap *lib_code; /* allocated from text_heap */
- struct nvc0_blitctx *blitctx;
+ struct nvc0_blitter *blitter;
struct {
void **entries;
@@ -72,7 +72,8 @@ nvc0_screen(struct pipe_screen *screen)
return (struct nvc0_screen *)screen;
}
-boolean nvc0_blitctx_create(struct nvc0_screen *);
+boolean nvc0_blitter_create(struct nvc0_screen *);
+void nvc0_blitter_destroy(struct nvc0_screen *);
void nvc0_screen_make_buffers_resident(struct nvc0_screen *);