diff options
author | Francisco Jerez <currojerez@riseup.net> | 2010-02-17 18:56:42 +0100 |
---|---|---|
committer | Francisco Jerez <currojerez@riseup.net> | 2010-02-17 23:36:29 +0100 |
commit | 56dcd011b5ec33190f268cf546a4c68f81f5ebd0 (patch) | |
tree | 9d617916a5a9442435a935ea55ed2b9c9130609b /src/mesa/drivers/dri/nouveau/nv04_driver.h | |
parent | 52e3f0949d47c846e3508a135afd75c439f2c49d (diff) |
dri/nouveau: Some multithreaded rendering fixes.
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nv04_driver.h')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nv04_driver.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nv04_driver.h b/src/mesa/drivers/dri/nouveau/nv04_driver.h index 00668710ac..4d599e683a 100644 --- a/src/mesa/drivers/dri/nouveau/nv04_driver.h +++ b/src/mesa/drivers/dri/nouveau/nv04_driver.h @@ -37,10 +37,6 @@ enum { #define NV04_TEXTURE_UNITS 2 -/* nv04_screen.c */ -GLboolean -nv04_screen_init(struct nouveau_screen *screen); - /* nv04_render.c */ void nv04_render_init(GLcontext *ctx); @@ -50,10 +46,10 @@ nv04_render_destroy(GLcontext *ctx); /* nv04_surface.c */ GLboolean -nv04_surface_init(struct nouveau_screen *screen); +nv04_surface_init(GLcontext *ctx); void -nv04_surface_takedown(struct nouveau_screen *screen); +nv04_surface_takedown(GLcontext *ctx); void nv04_surface_copy(GLcontext *ctx, |