Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/python/gpu/gpu_py.c')
-rw-r--r--source/blender/python/gpu/gpu_py.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/gpu/gpu_py.c b/source/blender/python/gpu/gpu_py.c
index 522cd89c5c0..35cc945e76c 100644
--- a/source/blender/python/gpu/gpu_py.c
+++ b/source/blender/python/gpu/gpu_py.c
@@ -36,9 +36,9 @@
struct PyC_StringEnumItems bpygpu_dataformat_items[] = {
{GPU_DATA_FLOAT, "FLOAT"},
{GPU_DATA_INT, "INT"},
- {GPU_DATA_UNSIGNED_INT, "UINT"},
- {GPU_DATA_UNSIGNED_BYTE, "UBYTE"},
- {GPU_DATA_UNSIGNED_INT_24_8, "UINT_24_8"},
+ {GPU_DATA_UINT, "UINT"},
+ {GPU_DATA_UBYTE, "UBYTE"},
+ {GPU_DATA_UINT_24_8, "UINT_24_8"},
{GPU_DATA_10_11_11_REV, "10_11_11_REV"},
{0, NULL},
};