summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nvc0/nvc0_screen.h
diff options
context:
space:
mode:
authorChristoph Bumiller <[email protected]>2012-09-26 23:06:40 +0200
committerChristoph Bumiller <[email protected]>2012-09-30 21:31:45 +0200
commit36ea744f58e5b436c45ed857bd92bbb472e641d5 (patch)
tree7761199ded45e851fe78039fd6cfa53bb76b8817 /src/gallium/drivers/nvc0/nvc0_screen.h
parentde80660c2bd43db112b6c82d970660ed9806cd33 (diff)
nv50,nvc0: implement blit
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 *);