radeonsi: fix release build unused variable warnings
Signed-off-by: Grazvydas Ignotas <notasas@gmail.com> Signed-off-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:

committed by
Marek Olšák

parent
42011be1e2
commit
c81a89f662
@@ -972,7 +972,7 @@ static bool do_hardware_msaa_resolve(struct pipe_context *ctx,
|
|||||||
struct si_context *sctx = (struct si_context*)ctx;
|
struct si_context *sctx = (struct si_context*)ctx;
|
||||||
struct r600_texture *src = (struct r600_texture*)info->src.resource;
|
struct r600_texture *src = (struct r600_texture*)info->src.resource;
|
||||||
struct r600_texture *dst = (struct r600_texture*)info->dst.resource;
|
struct r600_texture *dst = (struct r600_texture*)info->dst.resource;
|
||||||
struct r600_texture *rtmp;
|
MAYBE_UNUSED struct r600_texture *rtmp;
|
||||||
unsigned dst_width = u_minify(info->dst.resource->width0, info->dst.level);
|
unsigned dst_width = u_minify(info->dst.resource->width0, info->dst.level);
|
||||||
unsigned dst_height = u_minify(info->dst.resource->height0, info->dst.level);
|
unsigned dst_height = u_minify(info->dst.resource->height0, info->dst.level);
|
||||||
enum pipe_format format = info->src.format;
|
enum pipe_format format = info->src.format;
|
||||||
|
@@ -3306,9 +3306,9 @@ static void si_emit_sample_mask(struct si_context *sctx, struct r600_atom *atom)
|
|||||||
|
|
||||||
static void si_delete_sampler_state(struct pipe_context *ctx, void *state)
|
static void si_delete_sampler_state(struct pipe_context *ctx, void *state)
|
||||||
{
|
{
|
||||||
|
#ifdef DEBUG
|
||||||
struct si_sampler_state *s = state;
|
struct si_sampler_state *s = state;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
assert(s->magic == SI_SAMPLER_STATE_MAGIC);
|
assert(s->magic == SI_SAMPLER_STATE_MAGIC);
|
||||||
s->magic = 0;
|
s->magic = 0;
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user