Mesa (master): softpipe: s/template/templat/ to avoid potential C++ issues

Brian Paul brianp at kemper.freedesktop.org
Fri Apr 16 15:28:24 UTC 2010


Module: Mesa
Branch: master
Commit: 08e91bbfa135c2943a1b6633440c4025e9fac684
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=08e91bbfa135c2943a1b6633440c4025e9fac684

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Apr 16 09:12:41 2010 -0600

softpipe: s/template/templat/ to avoid potential C++ issues

---

 src/gallium/drivers/softpipe/sp_texture.c |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_texture.c b/src/gallium/drivers/softpipe/sp_texture.c
index 27cc6f2..2a31111 100644
--- a/src/gallium/drivers/softpipe/sp_texture.c
+++ b/src/gallium/drivers/softpipe/sp_texture.c
@@ -108,21 +108,21 @@ softpipe_displaytarget_layout(struct pipe_screen *screen,
  */
 static struct pipe_resource *
 softpipe_resource_create(struct pipe_screen *screen,
-                        const struct pipe_resource *template)
+                        const struct pipe_resource *templat)
 {
    struct softpipe_resource *spt = CALLOC_STRUCT(softpipe_resource);
    if (!spt)
       return NULL;
 
-   assert(template->format != PIPE_FORMAT_NONE);
+   assert(templat->format != PIPE_FORMAT_NONE);
 
-   spt->base = *template;
+   spt->base = *templat;
    pipe_reference_init(&spt->base.reference, 1);
    spt->base.screen = screen;
 
-   spt->pot = (util_is_power_of_two(template->width0) &&
-               util_is_power_of_two(template->height0) &&
-               util_is_power_of_two(template->depth0));
+   spt->pot = (util_is_power_of_two(templat->width0) &&
+               util_is_power_of_two(templat->height0) &&
+               util_is_power_of_two(templat->depth0));
 
    if (spt->base.bind & (PIPE_BIND_DISPLAY_TARGET |
 			 PIPE_BIND_SCANOUT |
@@ -166,7 +166,7 @@ softpipe_resource_destroy(struct pipe_screen *pscreen,
 
 static struct pipe_resource *
 softpipe_resource_from_handle(struct pipe_screen *screen,
-                             const struct pipe_resource *template,
+                             const struct pipe_resource *templat,
                              struct winsys_handle *whandle)
 {
    struct sw_winsys *winsys = softpipe_screen(screen)->winsys;
@@ -174,16 +174,16 @@ softpipe_resource_from_handle(struct pipe_screen *screen,
    if (!spt)
       return NULL;
 
-   spt->base = *template;
+   spt->base = *templat;
    pipe_reference_init(&spt->base.reference, 1);
    spt->base.screen = screen;
 
-   spt->pot = (util_is_power_of_two(template->width0) &&
-               util_is_power_of_two(template->height0) &&
-               util_is_power_of_two(template->depth0));
+   spt->pot = (util_is_power_of_two(templat->width0) &&
+               util_is_power_of_two(templat->height0) &&
+               util_is_power_of_two(templat->depth0));
 
    spt->dt = winsys->displaytarget_from_handle(winsys,
-                                               template,
+                                               templat,
                                                whandle,
                                                &spt->stride[0]);
    if (!spt->dt)




More information about the mesa-commit mailing list