summaryrefslogtreecommitdiffstats
path: root/src/video_core/regs_texturing.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-06-14 06:28:13 +0200
committerGitHub <noreply@github.com>2017-06-14 06:28:12 +0200
commit5fe5ccac4250d5f001cc29838033e2fef63ebb6c (patch)
tree32224370753184eeca64cf9b055351ee599c9e94 /src/video_core/regs_texturing.h
parentServices/UDS: Set the proper bit in the ConnectionStatus structure when creating a network. (#2738) (diff)
parentpica/rasterizer: implement/stub texture wrap mode 4-7 (diff)
downloadyuzu-5fe5ccac4250d5f001cc29838033e2fef63ebb6c.tar
yuzu-5fe5ccac4250d5f001cc29838033e2fef63ebb6c.tar.gz
yuzu-5fe5ccac4250d5f001cc29838033e2fef63ebb6c.tar.bz2
yuzu-5fe5ccac4250d5f001cc29838033e2fef63ebb6c.tar.lz
yuzu-5fe5ccac4250d5f001cc29838033e2fef63ebb6c.tar.xz
yuzu-5fe5ccac4250d5f001cc29838033e2fef63ebb6c.tar.zst
yuzu-5fe5ccac4250d5f001cc29838033e2fef63ebb6c.zip
Diffstat (limited to 'src/video_core/regs_texturing.h')
-rw-r--r--src/video_core/regs_texturing.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/regs_texturing.h b/src/video_core/regs_texturing.h
index 3f5355fa9..0b09f2299 100644
--- a/src/video_core/regs_texturing.h
+++ b/src/video_core/regs_texturing.h
@@ -30,10 +30,10 @@ struct TexturingRegs {
Repeat = 2,
MirroredRepeat = 3,
// Mode 4-7 produces some weird result and may be just invalid:
- // 4: Positive coord: clamp to edge; negative coord: repeat
- // 5: Positive coord: clamp to border; negative coord: repeat
- // 6: Repeat
- // 7: Repeat
+ ClampToEdge2 = 4, // Positive coord: clamp to edge; negative coord: repeat
+ ClampToBorder2 = 5, // Positive coord: clamp to border; negative coord: repeat
+ Repeat2 = 6, // Same as Repeat
+ Repeat3 = 7, // Same as Repeat
};
enum TextureFilter : u32 {