mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 00:00:11 +01:00
st/vega: Fix broken assert
This would never fire. Signed-off-by: Chris Forbes <chrisf@ijw.co.nz> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
6f7c693a85
commit
0741997ff0
1 changed files with 1 additions and 1 deletions
|
|
@ -516,7 +516,7 @@ void paint_set_pattern_tiling(struct vg_paint *paint,
|
|||
paint->pattern.sampler.wrap_t = PIPE_TEX_WRAP_MIRROR_REPEAT;
|
||||
break;
|
||||
default:
|
||||
debug_assert("!Unknown tiling mode");
|
||||
debug_assert(!"Unknown tiling mode");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue