diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-05-10 08:02:05 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-05-10 08:02:05 -0400 |
commit | dd1f79d0fad8d4922cfb8e255d85b7e4865d8331 (patch) | |
tree | 801d9a4b51cd3a248ee077313930882343b30160 /doc | |
parent | fe0bfc56cde0ee8fed2e45aaa5a3f11a102e476b (diff) |
graphics: texture: Add support for mirrored repeat wrap mode.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api.texi b/doc/api.texi index da05e62..8a06690 100644 --- a/doc/api.texi +++ b/doc/api.texi @@ -1851,8 +1851,8 @@ respectively. Possible values are @code{nearest} and @code{linear}. @var{wrap-s} and @var{wrap-t} describe how to interpret texture coordinates that are greater than @code{1.0}. Possible values are -@code{repeat}, @code{clamp}, @code{clamp-to-border}, and -@code{clamp-to-edge}. +@code{repeat}, @code{mirrored-repeat}, @code{clamp}, +@code{clamp-to-border}, and @code{clamp-to-edge}. For color-keyed images (images where a specific color should be made transparent), specify the appropriate @var{transparent-color}. |