radeonsi: rename si_begin_new_cs -> si_begin_new_gfx_cs
authorMarek Olšák <marek.olsak@amd.com>
Sun, 1 Apr 2018 18:18:17 +0000 (14:18 -0400)
committerMarek Olšák <marek.olsak@amd.com>
Thu, 5 Apr 2018 19:34:58 +0000 (15:34 -0400)
Acked-by: Timothy Arceri <tarceri@itsqueeze.com>
src/gallium/drivers/radeonsi/si_hw_context.c
src/gallium/drivers/radeonsi/si_pipe.c
src/gallium/drivers/radeonsi/si_pipe.h

index a97f2ecfc1ff041b37415daa6c7fe72d9e2a9075..6923e017cac61e0a46883114378fbcf3bc89e407 100644 (file)
@@ -152,11 +152,11 @@ void si_flush_gfx_cs(void *context, unsigned flags,
        if (ctx->current_saved_cs)
                si_saved_cs_reference(&ctx->current_saved_cs, NULL);
 
-       si_begin_new_cs(ctx);
+       si_begin_new_gfx_cs(ctx);
        ctx->gfx_flush_in_progress = false;
 }
 
-static void si_begin_cs_debug(struct si_context *ctx)
+static void si_begin_gfx_cs_debug(struct si_context *ctx)
 {
        static const uint32_t zeros[1];
        assert(!ctx->current_saved_cs);
@@ -186,10 +186,10 @@ static void si_begin_cs_debug(struct si_context *ctx)
                              RADEON_USAGE_READWRITE, RADEON_PRIO_TRACE);
 }
 
-void si_begin_new_cs(struct si_context *ctx)
+void si_begin_new_gfx_cs(struct si_context *ctx)
 {
        if (ctx->is_debug)
-               si_begin_cs_debug(ctx);
+               si_begin_gfx_cs_debug(ctx);
 
        /* Flush read caches at the beginning of CS not flushed by the kernel. */
        if (ctx->b.chip_class >= CIK)
index 25aea06f9fb3a41300a9051d93388d8fe7cef868..21b97437618a8b42c87ae0c1505172ee0be9b1ae 100644 (file)
@@ -332,7 +332,7 @@ static struct pipe_context *si_create_context(struct pipe_screen *screen,
        sctx->sample_mask.sample_mask = 0xffff;
 
        /* these must be last */
-       si_begin_new_cs(sctx);
+       si_begin_new_gfx_cs(sctx);
 
        if (sctx->b.chip_class >= GFX9) {
                sctx->wait_mem_scratch = (struct r600_resource*)
index 2c40866d90fa89d043a1fa1156740de02f05036f..a9b706bb41b9e38240c6f78753af89163ad068d2 100644 (file)
@@ -731,7 +731,7 @@ void si_init_screen_get_functions(struct si_screen *sscreen);
 void si_destroy_saved_cs(struct si_saved_cs *scs);
 void si_flush_gfx_cs(void *context, unsigned flags,
                     struct pipe_fence_handle **fence);
-void si_begin_new_cs(struct si_context *ctx);
+void si_begin_new_gfx_cs(struct si_context *ctx);
 void si_need_gfx_cs_space(struct si_context *ctx);
 
 /* si_compute.c */