diff options
author | Brian Paul <[email protected]> | 2016-05-25 17:13:56 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-05-26 17:44:18 -0600 |
commit | 21a3fb9cd838cdcbdf1be97453878abf74dd3f6f (patch) | |
tree | aa3f3f34e102e192cd22ea1ac42066953ac2005c /src/gallium/auxiliary/util/u_suballoc.h | |
parent | 45078e8890a6709390007d0fce8d6ed1be5ad5c0 (diff) |
util: s/unsigned/enum pipe_resource_usage/ for buffer usage variables
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util/u_suballoc.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_suballoc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_suballoc.h b/src/gallium/auxiliary/util/u_suballoc.h index 1f5550ffae3..5f9ccde7980 100644 --- a/src/gallium/auxiliary/util/u_suballoc.h +++ b/src/gallium/auxiliary/util/u_suballoc.h @@ -35,7 +35,8 @@ struct u_suballocator; struct u_suballocator * u_suballocator_create(struct pipe_context *pipe, unsigned size, - unsigned alignment, unsigned bind, unsigned usage, + unsigned alignment, unsigned bind, + enum pipe_resource_usage usage, boolean zero_buffer_memory); void |