summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/panfrost/pan_wallpaper.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/panfrost/pan_wallpaper.c')
-rw-r--r--src/gallium/drivers/panfrost/pan_wallpaper.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/panfrost/pan_wallpaper.c b/src/gallium/drivers/panfrost/pan_wallpaper.c
index 48418012fe8..b402519a767 100644
--- a/src/gallium/drivers/panfrost/pan_wallpaper.c
+++ b/src/gallium/drivers/panfrost/pan_wallpaper.c
@@ -25,6 +25,7 @@
#include "pan_wallpaper.h"
#include "pan_context.h"
#include "pan_screen.h"
+#include "pan_util.h"
//#include "include/panfrost-job.h"
#include "midgard/midgard_compile.h"
#include "compiler/nir/nir_builder.h"
@@ -78,7 +79,8 @@ panfrost_build_wallpaper_program()
nir_store_var(b, c_out, texel, 0xFF);
- nir_print_shader(shader, stdout);
+ if (pan_debug & PAN_DBG_SHADERS)
+ nir_print_shader(shader, stdout);
return shader;
}