summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gallium/include/pipe/p_screen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/include/pipe/p_screen.h b/src/gallium/include/pipe/p_screen.h
index cc9cebca6e3..8fa648e1879 100644
--- a/src/gallium/include/pipe/p_screen.h
+++ b/src/gallium/include/pipe/p_screen.h
@@ -107,7 +107,7 @@ struct pipe_screen {
* Create a new texture object, using the given template info.
*/
struct pipe_resource * (*resource_create)(struct pipe_screen *,
- const struct pipe_resource *template);
+ const struct pipe_resource *templat);
/**
* Create a texture from a winsys_handle. The handle is often created in
@@ -115,7 +115,7 @@ struct pipe_screen {
* texture_get_handle.
*/
struct pipe_resource * (*resource_from_handle)(struct pipe_screen *,
- const struct pipe_resource *template,
+ const struct pipe_resource *templat,
struct winsys_handle *handle);
/**