svga: make svga_surface_needs_propagation() surface const
authorBrian Paul <brianp@vmware.com>
Wed, 13 Jun 2012 17:41:32 +0000 (11:41 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 14 Jun 2012 14:20:40 +0000 (08:20 -0600)
src/gallium/drivers/svga/svga_surface.c
src/gallium/drivers/svga/svga_surface.h

index 2f9379bc42028a7344c3a3778f01e6fbc1c41328..44c18926e1131332a27ef74e796210bd8f2e146b 100644 (file)
@@ -384,9 +384,9 @@ svga_propagate_surface(struct svga_context *svga, struct pipe_surface *surf)
  * Check if we should call svga_propagate_surface on the surface.
  */
 boolean
-svga_surface_needs_propagation(struct pipe_surface *surf)
+svga_surface_needs_propagation(const struct pipe_surface *surf)
 {
-   struct svga_surface *s = svga_surface(surf);
+   const struct svga_surface *s = svga_surface_const(surf);
    struct svga_texture *tex = svga_texture(surf->texture);
 
    return s->dirty && s->handle != tex->handle;
index 7fb060c5097b8f7fdf9bb46f6a62fea30ec51013..7b8f6f018d2d85fb8e4695f65b157ad2921e94ce 100644 (file)
@@ -59,7 +59,7 @@ extern void
 svga_propagate_surface(struct svga_context *svga, struct pipe_surface *surf);
 
 extern boolean
-svga_surface_needs_propagation(struct pipe_surface *surf);
+svga_surface_needs_propagation(const struct pipe_surface *surf);
 
 struct svga_winsys_surface *
 svga_texture_view_surface(struct svga_context *svga,