From: Lectem Date: Tue, 7 Jul 2015 20:25:00 +0000 (+0200) Subject: Added GPU_CLAMP_TO_BORDER and GPU_MIRRORED_REPEAT X-Git-Tag: v0.6.0~32^2 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=594215e5e5510835f248e55155777beb22ae926a;p=corbenik%2Fctrulib.git Added GPU_CLAMP_TO_BORDER and GPU_MIRRORED_REPEAT --- 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