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_context.c | |
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_context.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.c b/src/gallium/drivers/llvmpipe/lp_context.c index 9120226de0c..e31ae6a3fc1 100644 --- a/src/gallium/drivers/llvmpipe/lp_context.c +++ b/src/gallium/drivers/llvmpipe/lp_context.c @@ -183,7 +183,7 @@ llvmpipe_create_context( struct pipe_screen *screen, void *priv ) if (debug_get_bool_option( "LP_NO_RAST", FALSE )) llvmpipe->no_rast = TRUE; - llvmpipe->setup = lp_setup_create( screen, + llvmpipe->setup = lp_setup_create( &llvmpipe->pipe, llvmpipe->draw ); if (!llvmpipe->setup) goto fail; |