turnip: delete a blit_image TODO that has already been resolved
[mesa.git] / src / freedreno / vulkan / tu_cs.c
index 16d49838ba8f98ea0b01ecbea8752626e0c214ef..809d511fa2bed356084fbdea139d6a422382cf86 100644 (file)
@@ -80,26 +80,6 @@ tu_cs_get_offset(const struct tu_cs *cs)
    return cs->start - (uint32_t *) cs->bos[cs->bo_count - 1]->map;
 }
 
-/**
- * Get the size of the command packets emitted since the last call to
- * tu_cs_add_entry.
- */
-static uint32_t
-tu_cs_get_size(const struct tu_cs *cs)
-{
-   return cs->cur - cs->start;
-}
-
-/**
- * Return true if there is no command packet emitted since the last call to
- * tu_cs_add_entry.
- */
-static uint32_t
-tu_cs_is_empty(const struct tu_cs *cs)
-{
-   return tu_cs_get_size(cs) == 0;
-}
-
 /*
  * Allocate and add a BO to a command stream.  Following command packets will
  * be emitted to the new BO.
@@ -288,7 +268,7 @@ VkResult
 tu_cs_alloc(struct tu_cs *cs,
             uint32_t count,
             uint32_t size,
-            struct ts_cs_memory *memory)
+            struct tu_cs_memory *memory)
 {
    assert(cs->mode == TU_CS_MODE_SUB_STREAM);
    assert(size && size <= 1024);