diff options
author | Gert Wollny <[email protected]> | 2017-11-16 16:09:49 +0100 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-11-17 09:27:57 -0700 |
commit | 28a02eb3b8a222166e190b40907d3b320902aa3c (patch) | |
tree | ae722fdab5931ffa023e963765e823659c1d103c /src | |
parent | 82e2f1ea34c8479b7bc35e5b750e0c329aade582 (diff) |
gallium/aux/util/u_transfer.c: Fix some -Wunused-param warnings.
Decorate the params with "UNUSED" accordingly.
v2: move UNUSED decoration in front of parameter declaration
Signed-off-by: Gert Wollny <[email protected]>
Reviewed-by: Brian Paul <[email protected]> (v1)
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_transfer.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gallium/auxiliary/util/u_transfer.c b/src/gallium/auxiliary/util/u_transfer.c index ba4b9dcc6b3..3089bcb1f34 100644 --- a/src/gallium/auxiliary/util/u_transfer.c +++ b/src/gallium/auxiliary/util/u_transfer.c @@ -81,25 +81,25 @@ void u_default_texture_subdata(struct pipe_context *pipe, } -boolean u_default_resource_get_handle(struct pipe_screen *screen, - struct pipe_resource *resource, - struct winsys_handle *handle) +boolean u_default_resource_get_handle(UNUSED struct pipe_screen *screen, + UNUSED struct pipe_resource *resource, + UNUSED struct winsys_handle *handle) { return FALSE; } -void u_default_transfer_flush_region( struct pipe_context *pipe, - struct pipe_transfer *transfer, - const struct pipe_box *box) +void u_default_transfer_flush_region(UNUSED struct pipe_context *pipe, + UNUSED struct pipe_transfer *transfer, + UNUSED const struct pipe_box *box) { /* This is a no-op implementation, nothing to do. */ } -void u_default_transfer_unmap( struct pipe_context *pipe, - struct pipe_transfer *transfer ) +void u_default_transfer_unmap(UNUSED struct pipe_context *pipe, + UNUSED struct pipe_transfer *transfer) { } @@ -111,10 +111,10 @@ u_resource( struct pipe_resource *res ) } boolean u_resource_get_handle_vtbl(struct pipe_screen *screen, - struct pipe_context *ctx, + UNUSED struct pipe_context *ctx, struct pipe_resource *resource, struct winsys_handle *handle, - unsigned usage) + UNUSED unsigned usage) { struct u_resource *ur = u_resource(resource); return ur->vtbl->resource_get_handle(screen, resource, handle); |