diff options
author | Keith Whitwell <[email protected]> | 2010-09-07 23:54:09 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-09-11 10:04:52 +0100 |
commit | b7a54b3dc6879fbcd0a1226fa6891eddd14baa36 (patch) | |
tree | b4d60e85d87927d680f43a1465eeaf7beb7da2ee | |
parent | 4749429a4a4bb893c35cd945a2aed60bf8f94a3e (diff) |
llvmpipe: allow bigger scenes
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_scene.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_scene.h b/src/gallium/drivers/llvmpipe/lp_scene.h index cc19def3b11..49c5d4d5770 100644 --- a/src/gallium/drivers/llvmpipe/lp_scene.h +++ b/src/gallium/drivers/llvmpipe/lp_scene.h @@ -53,7 +53,7 @@ struct lp_scene_queue; /* Scene temporary storage is clamped to this size: */ -#define LP_SCENE_MAX_SIZE (1024*1024) +#define LP_SCENE_MAX_SIZE (4*1024*1024) /* The maximum amount of texture storage referenced by a scene is * clamped ot this size: |