st/mesa: remove \n being only printed in debug builds after printed TGSI
authorMarek Olšák <marek.olsak@amd.com>
Sat, 9 Nov 2019 00:32:25 +0000 (19:32 -0500)
committerMarek Olšák <marek.olsak@amd.com>
Tue, 12 Nov 2019 00:45:07 +0000 (19:45 -0500)
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
src/mesa/state_tracker/st_program.c

index ae3b31bd9a9b601acc39004b89e6a7b2b691dc45..c37799a2ff44cfce52d03cb9b1532a0f9dfef9da 100644 (file)
@@ -791,10 +791,8 @@ st_create_vp_variant(struct st_context *st,
       state.tokens = tokens;
    }
 
-   if (ST_DEBUG & DEBUG_PRINT_IR) {
+   if (ST_DEBUG & DEBUG_PRINT_IR)
       tgsi_dump(state.tokens, 0);
-      debug_printf("\n");
-   }
 
    vpv->driver_shader = pipe->create_vs_state(pipe, &state);
    /* Save this for selection/feedback/rasterpos. */
@@ -1489,10 +1487,8 @@ st_create_fp_variant(struct st_context *st,
       state.tokens = tokens;
    }
 
-   if (ST_DEBUG & DEBUG_PRINT_IR) {
+   if (ST_DEBUG & DEBUG_PRINT_IR)
       tgsi_dump(state.tokens, 0);
-      debug_printf("\n");
-   }
 
    /* fill in variant */
    variant->driver_shader = pipe->create_fs_state(pipe, &state);
@@ -1729,15 +1725,11 @@ st_translate_common_program(struct st_context *st,
 
    st_store_ir_in_disk_cache(st, prog, false);
 
-   if ((ST_DEBUG & DEBUG_PRINT_IR) && (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_PRINT_IR) {
+   if (ST_DEBUG & DEBUG_PRINT_IR)
       tgsi_dump(stcp->state.tokens, 0);
-      debug_printf("\n");
-   }
 
    free_glsl_to_tgsi_visitor(stcp->glsl_to_tgsi);
    stcp->glsl_to_tgsi = NULL;