mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 17:50:11 +01:00
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:
parent
e219f04592
commit
5b351c801e
1 changed files with 4 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue