Cleanup: Abbreviate enums with 'UNSIGNED_' in the name

This commit is contained in:
2021-02-17 12:38:21 -03:00
parent 4430e8a008
commit 89c79c3ed8
26 changed files with 66 additions and 66 deletions

View File

@@ -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},
};