i965: Remove some unused WM opcode args.
authorEric Anholt <eric@anholt.net>
Wed, 12 Aug 2009 18:33:11 +0000 (11:33 -0700)
committerEric Anholt <eric@anholt.net>
Wed, 12 Aug 2009 19:43:42 +0000 (12:43 -0700)
src/mesa/drivers/dri/i965/brw_wm_emit.c

index 2e2885254ef615fbab6740256288498bf418c3b5..b9da7e691264807fcfce72dee6ff7d99e936917d 100644 (file)
@@ -65,8 +65,7 @@ static INLINE struct brw_reg sechalf( struct brw_reg reg )
 
 static void emit_pixel_xy(struct brw_compile *p,
                          const struct brw_reg *dst,
-                         GLuint mask,
-                         const struct brw_reg *arg0)
+                         GLuint mask)
 {
    struct brw_reg r1 = brw_vec1_grf(1, 0);
    struct brw_reg r1_uw = retype(r1, BRW_REGISTER_TYPE_UW);
@@ -98,8 +97,7 @@ static void emit_pixel_xy(struct brw_compile *p,
 static void emit_delta_xy(struct brw_compile *p,
                          const struct brw_reg *dst,
                          GLuint mask,
-                         const struct brw_reg *arg0,
-                         const struct brw_reg *arg1)
+                         const struct brw_reg *arg0)
 {
    struct brw_reg r1 = brw_vec1_grf(1, 0);
 
@@ -1194,11 +1192,11 @@ void brw_wm_emit( struct brw_wm_compile *c )
         /* Generated instructions for calculating triangle interpolants:
          */
       case WM_PIXELXY:
-        emit_pixel_xy(p, dst, dst_flags, args[0]);
+        emit_pixel_xy(p, dst, dst_flags);
         break;
 
       case WM_DELTAXY:
-        emit_delta_xy(p, dst, dst_flags, args[0], args[1]);
+        emit_delta_xy(p, dst, dst_flags, args[0]);
         break;
 
       case WM_WPOSXY: