diff options
author | Keith Whitwell <[email protected]> | 2010-03-02 14:41:35 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-03-02 15:03:09 +0000 |
commit | 5fe2ce28b6e9fba181c13c6f49b57b3dd68fe88e (patch) | |
tree | a66aa837465bbf79a7b23851e0cca0adacf1db36 /src/gallium/drivers/llvmpipe/lp_setup.h | |
parent | 8417528e3a5b9f2aed783222091ca96b56e8c37a (diff) |
llvmpipe: reorganize transfer usage
Move transfer creation and mapping to the "scene" object, and out of
the rasterizer. The rasterizer operates on already-mapped
framebuffers only, and no longer needs a screen or context pointer.
The scene object has access to a pipe_context, and this reorg prepares
for moving transfer functionality from the screen to the context.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_setup.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup.h b/src/gallium/drivers/llvmpipe/lp_setup.h index 0e155a7dc31..17c112b5289 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup.h +++ b/src/gallium/drivers/llvmpipe/lp_setup.h @@ -62,7 +62,7 @@ struct lp_fragment_shader; struct lp_jit_context; struct setup_context * -lp_setup_create( struct pipe_screen *screen, +lp_setup_create( struct pipe_context *pipe, struct draw_context *draw ); void |