My last attempt to fix polygon offsets with the reversed viewport depth
authorFelix Kuehling <fxkuehl@gmx.de>
Sun, 23 Jan 2005 01:42:01 +0000 (01:42 +0000)
committerFelix Kuehling <fxkuehl@gmx.de>
Sun, 23 Jan 2005 01:42:01 +0000 (01:42 +0000)
range used by the savage driver by negating ctx->MRD broke polygon
offsets with software fallbacks. This one adds a REVERSE_DEPTH parameter
to t_dd_tritmp.h (defaults to 0) that allows reversing polygon offsets
for hardware rendering but not for software fallbacks. For software
fallbacks depth values are reversed after polygon offsets have been
applied by the depth span functions.

src/mesa/drivers/dri/savage/savage_xmesa.c
src/mesa/drivers/dri/savage/savagetris.c
src/mesa/tnl_dd/t_dd_tritmp.h

index 98142889339b5c702f549b16bad5f8e130745b65..c2eb8d10b17145f7328a95039ade8c51dd363a47 100644 (file)
@@ -394,9 +394,6 @@ savageCreateContext( const __GLcontextModes *mesaVis,
    ctx->Const.MaxLineWidthAA = 3.0;
    ctx->Const.LineWidthGranularity = 1.0;
 #endif
-   /* This is needed to get polygon offset right with reversed depth range
-    * (see savageCalcViewport). Not sure if it has any other side effects. */
-   ctx->MRD *= -1.0;
    
    /* Dri stuff
     */
index fdd0f12724d75378b10ec756267d3498302b172f..f5faa3fe5688b0c8fffd415363b28aa9c7112709 100644 (file)
@@ -388,6 +388,7 @@ static struct {
 #define TAB rast_tab
 
 #define DEPTH_SCALE imesa->depth_scale
+#define REVERSE_DEPTH 1
 #define UNFILLED_TRI unfilled_tri
 #define UNFILLED_QUAD unfilled_quad
 #define VERT_X(_v) _v->v.x
index 5b17a6f6f0064483111f9fb41d549649511e6ef3..bc1617eae33094dfe12cab2cd1bb8f87e324b21f 100644 (file)
@@ -49,7 +49,8 @@
  * VERT_X(v): Alias for vertex x value.
  * VERT_Y(v): Alias for vertex y value.
  * VERT_Z(v): Alias for vertex z value.
- * DEPTH_SCALE: Scale for offset.
+ * DEPTH_SCALE: Scale for constant offset.
+ * REVERSE_DEPTH: Viewport depth range reversed.
  *
  * VERTEX: Hardware vertex type.
  * GET_VERTEX(n): Retreive vertex with index n.
 #define VERT_Z_ADD(v,val) VERT_Z(v) += val
 #endif
 
+#ifndef REVERSE_DEPTH
+#define REVERSE_DEPTH 0
+#endif
+
 /* disable twostencil for un-aware drivers */
 #ifndef HAVE_STENCIL_TWOSIDE
 #define HAVE_STENCIL_TWOSIDE 0
@@ -269,7 +274,7 @@ static void TAG(triangle)( GLcontext *ctx, GLuint e0, GLuint e1, GLuint e2 )
            if ( bc < 0.0f ) bc = -bc;
            offset += MAX2( ac, bc ) * ctx->Polygon.OffsetFactor;
         }
-        offset *= ctx->MRD;
+        offset *= REVERSE_DEPTH ? -ctx->MRD : ctx->MRD;
       }
    }
 
@@ -545,7 +550,7 @@ static void TAG(quad)( GLcontext *ctx,
            if ( bc < 0.0f ) bc = -bc;
            offset += MAX2( ac, bc ) * ctx->Polygon.OffsetFactor;
         }
-        offset *= ctx->MRD;
+        offset *= REVERSE_DEPTH ? -ctx->MRD : ctx->MRD;
       }
    }