From aa5d4062e8b359fb11f35816d87fd2f4fd4b778a Mon Sep 17 00:00:00 2001 From: Charmaine Lee Date: Wed, 3 Aug 2022 11:40:32 -0700 Subject: [PATCH] svga: fix mksstats build Trivial. Fixes: ed77ac1eef7 ("svga: add a helper function for common shader creation") Part-of: --- src/gallium/drivers/svga/svga_pipe_ts.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gallium/drivers/svga/svga_pipe_ts.c b/src/gallium/drivers/svga/svga_pipe_ts.c index e576294e78c..06e58159991 100644 --- a/src/gallium/drivers/svga/svga_pipe_ts.c +++ b/src/gallium/drivers/svga/svga_pipe_ts.c @@ -61,6 +61,7 @@ static void * svga_create_tcs_state(struct pipe_context *pipe, const struct pipe_shader_state *templ) { + struct svga_context *svga = svga_context(pipe); struct svga_tcs_shader *tcs; SVGA_STATS_TIME_PUSH(svga_sws(svga), SVGA_STATS_TIME_CREATETCS); @@ -73,6 +74,8 @@ svga_create_tcs_state(struct pipe_context *pipe, done: SVGA_STATS_TIME_POP(svga_sws(svga)); + (void) svga; /* silence unused var warning */ + return tcs; } @@ -137,6 +140,7 @@ static void * svga_create_tes_state(struct pipe_context *pipe, const struct pipe_shader_state *templ) { + struct svga_context *svga = svga_context(pipe); struct svga_tes_shader *tes; SVGA_STATS_TIME_PUSH(svga_sws(svga), SVGA_STATS_TIME_CREATETES); @@ -150,6 +154,8 @@ svga_create_tes_state(struct pipe_context *pipe, done: SVGA_STATS_TIME_POP(svga_sws(svga)); + (void) svga; /* silence unused var warning */ + return tes; }