diff options
author | Jason Ekstrand <[email protected]> | 2015-10-08 12:15:58 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-10-08 12:16:00 -0700 |
commit | 48a87f4ba062e572a66f546997366d8896a4ecd1 (patch) | |
tree | e9e9de6822116812c2ced132f80ac4fb1dc38bf9 /src/vulkan/anv_private.h | |
parent | 89845598921afbef35b0adefee6e2eb9446ef327 (diff) |
anv/queue: Get rid of the serial
This was a remnant of the object tagging implementation we had at one
point. We haven't used it for a long time so there's no good reason to
keep it around.
Diffstat (limited to 'src/vulkan/anv_private.h')
-rw-r--r-- | src/vulkan/anv_private.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/vulkan/anv_private.h b/src/vulkan/anv_private.h index dc5a2350e86..6bc781fa072 100644 --- a/src/vulkan/anv_private.h +++ b/src/vulkan/anv_private.h @@ -458,20 +458,6 @@ struct anv_queue { struct anv_device * device; struct anv_state_pool * pool; - - /** - * Serial number of the most recently completed batch executed on the - * engine. - */ - struct anv_state completed_serial; - - /** - * The next batch submitted to the engine will be assigned this serial - * number. - */ - uint32_t next_serial; - - uint32_t last_collected_serial; }; struct anv_device { |