diff options
author | Zack Rusin <[email protected]> | 2013-09-24 15:08:35 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2013-09-24 15:10:02 -0400 |
commit | 71ecc2cf71e678daca347bb10dd48e037ecd10af (patch) | |
tree | 2204d7aa785d0bf7b8baabd1c79e1d382f025e81 /src/gallium/drivers/llvmpipe/lp_setup.c | |
parent | 49f8fc64de4d06fd516f15cc77449d33f0b85714 (diff) |
Revert "llvmpipe: increase number of subpixel bits to eight"
This reverts commit 755c11dc5e94f17097c186edaaa39d818396f14c.
We agreed that this is band-aid that's not very useful and
the proper solution is to rewrite the rasterization algo
so that it operates on 64 bit values.
Signed-off-by: Zack Rusin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_setup.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c b/src/gallium/drivers/llvmpipe/lp_setup.c index d686500135d..5fde01fa13b 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup.c +++ b/src/gallium/drivers/llvmpipe/lp_setup.c @@ -1007,12 +1007,16 @@ try_update_scene_state( struct lp_setup_context *setup ) &setup->draw_regions[i]); } } - /* - * Check if subdivision of triangles is needed if the framebuffer - * is larger than our MAX_FIXED_LENGTH can accomodate. + /* If the framebuffer is large we have to think about fixed-point + * integer overflow. For 2K by 2K images, coordinates need 15 bits + * (2^11 + 4 subpixel bits). The product of two such numbers would + * use 30 bits. Any larger and we could overflow a 32-bit int. + * + * To cope with this problem we check if triangles are large and + * subdivide them if needed. */ - setup->subdivide_large_triangles = (setup->fb.width > MAX_FIXED_LENGTH && - setup->fb.height > MAX_FIXED_LENGTH); + setup->subdivide_large_triangles = (setup->fb.width > 2048 && + setup->fb.height > 2048); } setup->dirty = 0; |