fix fd.o bug #13761
authorZou Nan hai <nanhai.zou@intel.com>
Thu, 3 Jan 2008 08:05:27 +0000 (16:05 +0800)
committerZou Nan hai <nanhai.zou@intel.com>
Thu, 3 Jan 2008 08:05:27 +0000 (16:05 +0800)
 MRD computation is now changed in mesa core

src/mesa/drivers/dri/i915/intel_context.c

index f407f7e..99ea37d 100644 (file)
@@ -486,10 +486,10 @@ intelInitContext(struct intel_context *intel,
    switch (mesaVis->depthBits) {
    case 0:                     /* what to do in this case? */
    case 16:
-      intel->polygon_offset_scale = 1.0 / 0xffff;
+      intel->polygon_offset_scale = 1.0;
       break;
    case 24:
-      intel->polygon_offset_scale = 2.0 / 0xffffff;     /* req'd to pass glean */
+      intel->polygon_offset_scale = 2.0;     /* req'd to pass glean */
       break;
    default:
       assert(0);