diff options
author | Eric Anholt <[email protected]> | 2017-01-21 16:22:15 +1100 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-08-18 11:56:58 -0700 |
commit | 9caba0f16fc6a1a89effbeb36ec76d58ade58fe1 (patch) | |
tree | 922a0d1eefcc6e16cfc2ede9c281252ce76d1ecf /src/intel/vulkan/anv_private.h | |
parent | 57fb1bb5858719b4e91eb350c4f049c25ea8b5a8 (diff) |
anv: Move a comment that got left behind in the u_vector refactor.
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index de7463797a4..6b2414429f3 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -367,14 +367,6 @@ anv_multialloc_alloc2(struct anv_multialloc *ma, return anv_multialloc_alloc(ma, alloc ? alloc : parent_alloc, scope); } -/** - * A dynamically growable, circular buffer. Elements are added at head and - * removed from tail. head and tail are free-running uint32_t indices and we - * only compute the modulo with size when accessing the array. This way, - * number of bytes in the queue is always head - tail, even in case of - * wraparound. - */ - struct anv_bo { uint32_t gem_handle; |