Module: Mesa Branch: gallium-resources Commit: af9793ab9e5386b150d6b25c0d1978fdc67172e4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=af9793ab9e5386b150d6b25c0d1978fdc67172e4
Author: Michal Krol <mic...@vmware.com> Date: Mon Mar 22 20:04:39 2010 +0100 gallium: Do not use `template` for formal parameter names. --- src/gallium/include/pipe/p_screen.h | 4 ++-- 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 cc9cebc..8fa648e 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); /** _______________________________________________ mesa-commit mailing list mesa-commit@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-commit