st/mesa: rename DEBUG_TGSI -> DEBUG_PRINT_IR
authorMarek Olšák <marek.olsak@amd.com>
Sat, 9 Nov 2019 00:24:34 +0000 (19:24 -0500)
committerMarek Olšák <marek.olsak@amd.com>
Tue, 12 Nov 2019 00:45:04 +0000 (19:45 -0500)
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
src/mesa/state_tracker/st_context.c
src/mesa/state_tracker/st_debug.c
src/mesa/state_tracker/st_debug.h
src/mesa/state_tracker/st_program.c

index 9f72a8ef8718afdee63190955f94853dad3aab89..0a473f2d3277fddee804d4c02bcd8ccdb957388b 100644 (file)
@@ -961,7 +961,7 @@ st_create_context(gl_api api, struct pipe_context *pipe,
    st_debug_init();
 
    if (pipe->screen->get_disk_shader_cache &&
-       !(ST_DEBUG & DEBUG_TGSI))
+       !(ST_DEBUG & DEBUG_PRINT_IR))
       ctx->Cache = pipe->screen->get_disk_shader_cache(pipe->screen);
 
    /* XXX: need a capability bit in gallium to query if the pipe
index 06e2456ac981acd7c161a0e46965972d0bd5599b..95564cbc3643312acaca00a5eb515d30cf3da5fb 100644 (file)
@@ -46,7 +46,7 @@ int ST_DEBUG = 0;
 
 static const struct debug_named_value st_debug_flags[] = {
    { "mesa",     DEBUG_MESA, NULL },
-   { "tgsi",     DEBUG_TGSI, NULL },
+   { "tgsi",     DEBUG_PRINT_IR, NULL },
    { "constants",DEBUG_CONSTANTS, NULL },
    { "pipe",     DEBUG_PIPE, NULL },
    { "tex",      DEBUG_TEX, NULL },
index 446baa75c64b0b99345970cda90a1fda63c71391..83f9a43bcbf024eeb8336b82a6484ecd6f05429c 100644 (file)
@@ -39,7 +39,7 @@ st_print_current(void);
 
 
 #define DEBUG_MESA      0x1
-#define DEBUG_TGSI      0x2
+#define DEBUG_PRINT_IR  0x2
 #define DEBUG_CONSTANTS 0x4
 #define DEBUG_PIPE      0x8
 #define DEBUG_TEX       0x10
index 1856ba8a43b39ccd463c6ebed78179949cb2ae9c..ae3b31bd9a9b601acc39004b89e6a7b2b691dc45 100644 (file)
@@ -791,7 +791,7 @@ st_create_vp_variant(struct st_context *st,
       state.tokens = tokens;
    }
 
-   if (ST_DEBUG & DEBUG_TGSI) {
+   if (ST_DEBUG & DEBUG_PRINT_IR) {
       tgsi_dump(state.tokens, 0);
       debug_printf("\n");
    }
@@ -1489,7 +1489,7 @@ st_create_fp_variant(struct st_context *st,
       state.tokens = tokens;
    }
 
-   if (ST_DEBUG & DEBUG_TGSI) {
+   if (ST_DEBUG & DEBUG_PRINT_IR) {
       tgsi_dump(state.tokens, 0);
       debug_printf("\n");
    }
@@ -1729,12 +1729,12 @@ st_translate_common_program(struct st_context *st,
 
    st_store_ir_in_disk_cache(st, prog, false);
 
-   if ((ST_DEBUG & DEBUG_TGSI) && (ST_DEBUG & DEBUG_MESA)) {
+   if ((ST_DEBUG & DEBUG_PRINT_IR) && (ST_DEBUG & DEBUG_MESA)) {
       _mesa_print_program(prog);
       debug_printf("\n");
    }
 
-   if (ST_DEBUG & DEBUG_TGSI) {
+   if (ST_DEBUG & DEBUG_PRINT_IR) {
       tgsi_dump(stcp->state.tokens, 0);
       debug_printf("\n");
    }