Added GPU_CLAMP_TO_BORDER and GPU_MIRRORED_REPEAT

This commit is contained in:
Lectem 2015-07-07 22:25:00 +02:00
parent 8e620c269d
commit 594215e5e5

View File

@ -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