From 594215e5e5510835f248e55155777beb22ae926a Mon Sep 17 00:00:00 2001 From: Lectem Date: Tue, 7 Jul 2015 22:25:00 +0200 Subject: [PATCH] Added GPU_CLAMP_TO_BORDER and GPU_MIRRORED_REPEAT --- libctru/include/3ds/gpu/gpu.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libctru/include/3ds/gpu/gpu.h b/libctru/include/3ds/gpu/gpu.h index 1d79138..a514401 100644 --- a/libctru/include/3ds/gpu/gpu.h +++ b/libctru/include/3ds/gpu/gpu.h @@ -41,8 +41,10 @@ typedef enum typedef enum { - GPU_CLAMP_TO_EDGE = 0x0, - GPU_REPEAT = 0x2, + GPU_CLAMP_TO_EDGE = 0x0, + GPU_CLAMP_TO_BORDER = 0x1, + GPU_REPEAT = 0x2, + GPU_MIRRORED_REPEAT = 0x3, }GPU_TEXTURE_WRAP_PARAM; typedef enum