svga: return PIPE_OK instead of 0
authorBrian Paul <brianp@vmware.com>
Thu, 17 May 2012 19:53:15 +0000 (13:53 -0600)
committerBrian Paul <brianp@vmware.com>
Sat, 19 May 2012 14:28:56 +0000 (08:28 -0600)
And fix the emit_rss() function's return type.

src/gallium/drivers/svga/svga_state_constants.c
src/gallium/drivers/svga/svga_state_framebuffer.c
src/gallium/drivers/svga/svga_state_need_swtnl.c
src/gallium/drivers/svga/svga_state_rss.c
src/gallium/drivers/svga/svga_state_vs.c

index 245b6d4b96c8a963ca5dabb6070cff2c252f76c9..70682d157f839ef9c0a84972150dbc3b7e7f61dc 100644 (file)
@@ -307,7 +307,7 @@ emit_fs_consts(struct svga_context *svga, unsigned dirty)
       offset += key->num_unnormalized_coords;
    }
 
-   return 0;
+   return PIPE_OK;
 }
 
 
index 402d5feac999da857227860b3118634b5d6d17be..cf3310ac14a70a9f807533ea48096823863ccdd8 100644 (file)
@@ -91,7 +91,7 @@ emit_framebuffer( struct svga_context *svga,
 
    svga->rebind.rendertargets = FALSE;
 
-   return 0;
+   return PIPE_OK;
 }
 
 
@@ -439,7 +439,7 @@ out:
       svga->state.hw_clear.prescale = prescale;
    }
 
-   return 0;
+   return PIPE_OK;
 }
 
 
@@ -519,7 +519,7 @@ emit_clip_planes( struct svga_context *svga,
          return ret;
    }
 
-   return 0;
+   return PIPE_OK;
 }
 
 
index ce4db8da5df071c8c64ea8f02867515047d62d44..704866861b1ad1d1f74b1b940ae3988c339aafa3 100644 (file)
@@ -97,7 +97,7 @@ update_need_swvfetch( struct svga_context *svga,
       svga->dirty |= SVGA_NEW_NEED_SWVFETCH;
    }
    
-   return 0;
+   return PIPE_OK;
 }
 
 struct svga_tracked_state svga_update_need_swvfetch = 
@@ -172,7 +172,7 @@ update_need_pipeline( struct svga_context *svga,
    if (0 && svga->state.sw.need_pipeline)
       debug_printf("sw.need_pipeline = %d\n", svga->state.sw.need_pipeline);
 
-   return 0;
+   return PIPE_OK;
 }
 
 
@@ -228,7 +228,7 @@ update_need_swtnl( struct svga_context *svga,
       svga->swtnl.new_vdecl = TRUE;
    }
   
-   return 0;
+   return PIPE_OK;
 }
 
 
index a2bcf24dd1ba79192d1078173c0cd309e7fcc9d7..6a739241af4fbd024618e5311dafbfdd75544f9e 100644 (file)
@@ -75,8 +75,8 @@ svga_queue_rs( struct rs_queue *q,
  * to hardware.  Simplest implementation would be to emit the whole of
  * the "to" state.
  */
-static int emit_rss( struct svga_context *svga,
-                     unsigned dirty )
+static enum pipe_error
+emit_rss(struct svga_context *svga, unsigned dirty)
 {
    struct svga_screen *screen = svga_screen(svga->pipe.screen);
    struct rs_queue queue;
@@ -269,7 +269,7 @@ static int emit_rss( struct svga_context *svga,
       SVGA_FIFOCommitAll( svga->swc );
    }
 
-   return 0;
+   return PIPE_OK;
 
 fail:
    /* XXX: need to poison cached hardware state on failure to ensure
index 1d140bd03a14143be6e080ec59e3a46ad5e4e092..e8c953be1a8f95e86326cbc932ce28ddb732395e 100644 (file)
@@ -294,7 +294,7 @@ update_zero_stride( struct svga_context *svga,
    if (svga->curr.num_zero_stride_vertex_elements)
       svga->dirty |= SVGA_NEW_ZERO_STRIDE;
 
-   return 0;
+   return PIPE_OK;
 }
 
 struct svga_tracked_state svga_hw_update_zero_stride =