Merge pull request #134 from Lectem/wrap_modes

Added GPU_CLAMP_TO_BORDER and GPU_MIRRORED_REPEAT
This commit is contained in:
fincs 2015-07-07 22:41:20 +02:00
commit 17b0f88dcb

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