nv50: Silence incompatible pointer type initialization warning.
authorVinson Lee <vlee@vmware.com>
Sun, 22 Aug 2010 05:01:04 +0000 (22:01 -0700)
committerVinson Lee <vlee@vmware.com>
Sun, 22 Aug 2010 05:01:04 +0000 (22:01 -0700)
Silence the following GCC warning.
warning: initialization from incompatible pointer type

src/gallium/drivers/nv50/nv50_push.c

index 6a2ffd5..57c0010 100644 (file)
@@ -108,8 +108,9 @@ emit_vertex(struct push_context *ctx, unsigned n)
    int i;
 
    if (ctx->edgeflag_attr < 16) {
-      float *edgeflag = (uint8_t *)ctx->attr[ctx->edgeflag_attr].map +
-                        ctx->attr[ctx->edgeflag_attr].stride * n;
+      float *edgeflag = (float *)
+         ((uint8_t *)ctx->attr[ctx->edgeflag_attr].map +
+          ctx->attr[ctx->edgeflag_attr].stride * n);
 
       if (*edgeflag != ctx->edgeflag) {
          BEGIN_RING(chan, tesla, NV50TCL_EDGEFLAG_ENABLE, 1);