Revert "llvmpipe: increase number of subpixel bits to eight"
authorZack Rusin <zackr@vmware.com>
Tue, 24 Sep 2013 19:08:35 +0000 (15:08 -0400)
committerZack Rusin <zackr@vmware.com>
Tue, 24 Sep 2013 19:10:02 +0000 (15:10 -0400)
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 <zackr@vmware.com>
src/gallium/drivers/llvmpipe/lp_rast.h
src/gallium/drivers/llvmpipe/lp_setup.c
src/gallium/drivers/llvmpipe/lp_setup_tri.c

index 39ff6af327f5ad30110b8ef363615b11f45a5614..c57f2ea11de44574136a5dcf66287b4cad60a5fe 100644 (file)
@@ -46,20 +46,10 @@ struct lp_scene;
 struct lp_fence;
 struct cmd_bin;
 
-#define FIXED_TYPE_WIDTH 32
 /** For sub-pixel positioning */
-#define FIXED_ORDER 8
+#define FIXED_ORDER 4
 #define FIXED_ONE (1<<FIXED_ORDER)
 
-/** Maximum length of an edge in a primitive in pixels.
- *  If the framebuffer is large we have to think about fixed-point
- *  integer overflow.  Coordinates need ((FIXED_TYPE_WIDTH/2) - 1) bits
- *  to be able to fit product of two such coordinates inside
- *  FIXED_TYPE_WIDTH, any larger and we could overflow a
- *  FIXED_TYPE_WIDTH_-bit int.
- */
-#define MAX_FIXED_LENGTH (1 << (((FIXED_TYPE_WIDTH/2) - 1) - FIXED_ORDER))
-
 /* Rasterizer output size going to jit fs, width/height */
 #define LP_RASTER_BLOCK_SIZE 4
 
index d686500135df0625fd0ed636d526d79244fd8fe7..5fde01fa13b625dce2f4ec28538b551fb6c0ae8a 100644 (file)
@@ -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;
index cf67f29f0e34bebe8685e4a52f394f507eb14dc6..da9967ad3f113531a791300b4b03c041149819f0 100644 (file)
@@ -995,7 +995,7 @@ check_subdivide_triangle(struct lp_setup_context *setup,
                          const float (*v2)[4],
                          triangle_func_t tri)
 {
-   const float maxLen = MAX_FIXED_LENGTH;  /* longest permissible edge, in pixels */
+   const float maxLen = 2048.0f;  /* longest permissible edge, in pixels */
    float dx10, dy10, len10;
    float dx21, dy21, len21;
    float dx02, dy02, len02;