pan/decode: Add missing wrap modes

Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5573>
This commit is contained in:
Icecream95 2020-06-20 18:20:03 +12:00 committed by Marge Bot
parent e219f04592
commit 5b351c801e

View file

@ -479,8 +479,12 @@ pandecode_wrap_mode(enum mali_wrap_mode op)
switch (op) {
DEFINE_CASE(REPEAT);
DEFINE_CASE(CLAMP_TO_EDGE);
DEFINE_CASE(CLAMP);
DEFINE_CASE(CLAMP_TO_BORDER);
DEFINE_CASE(MIRRORED_REPEAT);
DEFINE_CASE(MIRRORED_CLAMP_TO_EDGE);
DEFINE_CASE(MIRRORED_CLAMP);
DEFINE_CASE(MIRRORED_CLAMP_TO_BORDER);
default:
pandecode_msg("XXX: invalid wrap mode %X\n", op);