diff options
author | Brian Paul <[email protected]> | 2010-04-28 14:19:15 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-28 15:25:50 -0600 |
commit | 8975ade13b7efdea2273e91e05cc6ecbda6ca454 (patch) | |
tree | 962da2a645e80c47b9d8f70ef0f86a5f71d0da57 /src/gallium/drivers/llvmpipe/lp_state.h | |
parent | 965a604306e9371379cccebc5f83120e99d18548 (diff) |
llvmpipe: make rasterizer-related functions static, clean-up initializations
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_state.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_state.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state.h b/src/gallium/drivers/llvmpipe/lp_state.h index 8ce34c611b3..18143807c91 100644 --- a/src/gallium/drivers/llvmpipe/lp_state.h +++ b/src/gallium/drivers/llvmpipe/lp_state.h @@ -121,16 +121,6 @@ struct lp_velems_state }; -void * -llvmpipe_create_rasterizer_state(struct pipe_context *, - const struct pipe_rasterizer_state *); - -void -llvmpipe_bind_rasterizer_state(struct pipe_context *, void *); - -void -llvmpipe_delete_rasterizer_state(struct pipe_context *, void *); - void llvmpipe_set_framebuffer_state(struct pipe_context *, const struct pipe_framebuffer_state *); @@ -162,5 +152,8 @@ llvmpipe_init_fs_funcs(struct llvmpipe_context *llvmpipe); void llvmpipe_init_vs_funcs(struct llvmpipe_context *llvmpipe); +void +llvmpipe_init_rasterizer_funcs(struct llvmpipe_context *llvmpipe); + #endif |