diff options
author | Chia-I Wu <[email protected]> | 2019-01-16 10:03:02 -0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2019-03-11 10:01:41 -0700 |
commit | 45120127ea3775e4f4f42f8776a72b4d5f423329 (patch) | |
tree | d1e2c89e6f1282a21ddfcab79df8c80814638184 /src/freedreno/vulkan/tu_private.h | |
parent | 0801019d335c6584716cb99fc7b8ca42cc0064b0 (diff) |
turnip: run sed and clang-format on tu_cs
Diffstat (limited to 'src/freedreno/vulkan/tu_private.h')
-rw-r--r-- | src/freedreno/vulkan/tu_private.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/freedreno/vulkan/tu_private.h b/src/freedreno/vulkan/tu_private.h index a112bbcb781..7a65bc38585 100644 --- a/src/freedreno/vulkan/tu_private.h +++ b/src/freedreno/vulkan/tu_private.h @@ -717,22 +717,22 @@ void tu_bo_list_reset(struct tu_bo_list *list); uint32_t tu_bo_list_add(struct tu_bo_list *list, const struct tu_bo *bo); -struct tu_cmd_stream_entry +struct tu_cs_entry { - /* No ownership */ + /* No ownership */ struct tu_bo *bo; uint32_t size; uint64_t offset; }; -struct tu_cmd_stream +struct tu_cs { uint32_t *start; uint32_t *cur; uint32_t *end; - struct tu_cmd_stream_entry *entries; + struct tu_cs_entry *entries; uint32_t entry_count; uint32_t entry_capacity; @@ -767,7 +767,7 @@ struct tu_cmd_buffer struct tu_cmd_buffer_upload upload; struct tu_bo_list bo_list; - struct tu_cmd_stream cs; + struct tu_cs cs; VkResult record_result; }; |