diff options
| author | 2017-06-01 16:56:46 +0300 | |
|---|---|---|
| committer | 2017-06-04 09:47:25 +0300 | |
| commit | 28d1e73d2f1eb5d77568303050d254fd3b4df853 (patch) | |
| tree | 29f34273ed1a7943a5f32b6e510d6f4caf6e5c02 /src/video_core/regs_texturing.h | |
| parent | Merge pull request #2734 from yuriks/cmake-imported-libs (diff) | |
| download | yuzu-28d1e73d2f1eb5d77568303050d254fd3b4df853.tar.gz yuzu-28d1e73d2f1eb5d77568303050d254fd3b4df853.tar.xz yuzu-28d1e73d2f1eb5d77568303050d254fd3b4df853.zip | |
pica/rasterizer: implement/stub texture wrap mode 4-7
Diffstat (limited to 'src/video_core/regs_texturing.h')
| -rw-r--r-- | src/video_core/regs_texturing.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/regs_texturing.h b/src/video_core/regs_texturing.h index e4038b41b..2c654d5c8 100644 --- a/src/video_core/regs_texturing.h +++ b/src/video_core/regs_texturing.h | |||
| @@ -30,10 +30,10 @@ struct TexturingRegs { | |||
| 30 | Repeat = 2, | 30 | Repeat = 2, |
| 31 | MirroredRepeat = 3, | 31 | MirroredRepeat = 3, |
| 32 | // Mode 4-7 produces some weird result and may be just invalid: | 32 | // Mode 4-7 produces some weird result and may be just invalid: |
| 33 | // 4: Positive coord: clamp to edge; negative coord: repeat | 33 | ClampToEdge2 = 4, // Positive coord: clamp to edge; negative coord: repeat |
| 34 | // 5: Positive coord: clamp to border; negative coord: repeat | 34 | ClampToBorder2 = 5, // Positive coord: clamp to border; negative coord: repeat |
| 35 | // 6: Repeat | 35 | Repeat2 = 6, // Same as Repeat |
| 36 | // 7: Repeat | 36 | Repeat3 = 7, // Same as Repeat |
| 37 | }; | 37 | }; |
| 38 | 38 | ||
| 39 | enum TextureFilter : u32 { | 39 | enum TextureFilter : u32 { |