projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e219f04
)
pan/decode: Add missing wrap modes
author
Icecream95
<ixn@keemail.me>
Sat, 20 Jun 2020 06:20:03 +0000
(18:20 +1200)
committer
Marge Bot
<eric+marge@anholt.net>
Mon, 22 Jun 2020 12:15:05 +0000
(12:15 +0000)
Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5573>
src/panfrost/pandecode/decode.c
patch
|
blob
|
history
diff --git
a/src/panfrost/pandecode/decode.c
b/src/panfrost/pandecode/decode.c
index 1774bedafefcbf358a6aa944f4568e81a1f3e83a..ac85090b5f5a228e927a4e6b37f7cf7fb7817700 100644
(file)
--- a/
src/panfrost/pandecode/decode.c
+++ b/
src/panfrost/pandecode/decode.c
@@
-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);