diff options
author | Francisco Jerez <[email protected]> | 2010-11-10 20:18:33 +0100 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2010-11-11 14:50:50 +0100 |
commit | cdb38b5d3d1b93a90a91ad06c0f03efdfde6b525 (patch) | |
tree | 1ebfc5ddf9b1b1c11e1e7e08c8204e05507195bd /src/mesa/drivers/dri/nouveau/nv10_driver.h | |
parent | dc524adee2cfd0f115800cd4ec3f8384010f154e (diff) |
dri/nouveau: Split hardware/software TNL instantiation more cleanly.
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nv10_driver.h')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nv10_driver.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nv10_driver.h b/src/mesa/drivers/dri/nouveau/nv10_driver.h index dec3d64e7d2..6fdc4641623 100644 --- a/src/mesa/drivers/dri/nouveau/nv10_driver.h +++ b/src/mesa/drivers/dri/nouveau/nv10_driver.h @@ -45,10 +45,16 @@ nv10_transform_depth(struct gl_context *ctx, float z); /* nv10_render.c */ void -nv10_render_init(struct gl_context *ctx); +nv10_vbo_init(struct gl_context *ctx); void -nv10_render_destroy(struct gl_context *ctx); +nv10_vbo_destroy(struct gl_context *ctx); + +void +nv10_swtnl_init(struct gl_context *ctx); + +void +nv10_swtnl_destroy(struct gl_context *ctx); /* nv10_state_fb.c */ void |