summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_texture.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-04-16 09:12:41 -0600
committerBrian Paul <brianp@vmware.com>2010-04-16 09:27:58 -0600
commit08e91bbfa135c2943a1b6633440c4025e9fac684 (patch)
treefe5910227a03315ac5bb7fc2d69643a2bde0c50f /src/gallium/drivers/softpipe/sp_texture.c
parent0639765b2850739af1678f10fc0c5706d5827776 (diff)
softpipe: s/template/templat/ to avoid potential C++ issues
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_texture.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_texture.c24
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 27cc6f27b2..2a31111899 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)