Pica/TextureUnit: Implement mirrored repeating texture wrapping.
This commit is contained in:
parent
8bd7a896ea
commit
6ca752ccbc
2 changed files with 12 additions and 3 deletions
|
@ -118,8 +118,9 @@ struct Regs {
|
|||
|
||||
struct TextureConfig {
|
||||
enum WrapMode : u32 {
|
||||
ClampToEdge = 0,
|
||||
Repeat = 2,
|
||||
ClampToEdge = 0,
|
||||
Repeat = 2,
|
||||
MirroredRepeat = 3,
|
||||
};
|
||||
|
||||
INSERT_PADDING_WORDS(0x1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue