Mesa (master): util: Change u_get_transfer_vtbl usage argument type to match prototype.

Vinson Lee vlee at kemper.freedesktop.org
Fri Feb 4 04:19:50 UTC 2011


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

Author: Vinson Lee <vlee at vmware.com>
Date:   Thu Feb  3 20:15:25 2011 -0800

util: Change u_get_transfer_vtbl usage argument type to match prototype.

The type of u_get_transfer_vtbl of the usage argument in u_transfer.h is
unsigned and not enum pipe_transfer_usage. This patch changes the type
of usage to unsigned to match the prototype in the header file.

---

 src/gallium/auxiliary/util/u_resource.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_resource.c b/src/gallium/auxiliary/util/u_resource.c
index 443c9f8..ea6896b 100644
--- a/src/gallium/auxiliary/util/u_resource.c
+++ b/src/gallium/auxiliary/util/u_resource.c
@@ -35,7 +35,7 @@ unsigned u_is_resource_referenced_vtbl( struct pipe_context *pipe,
 struct pipe_transfer *u_get_transfer_vtbl(struct pipe_context *context,
                                           struct pipe_resource *resource,
                                           unsigned level,
-                                          enum pipe_transfer_usage usage,
+                                          unsigned usage,
                                           const struct pipe_box *box)
 {
    struct u_resource *ur = u_resource(resource);




More information about the mesa-commit mailing list