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:
authorMike Erwin <significant.bit@gmail.com>2016-11-17 02:25:11 +0300
committerMike Erwin <significant.bit@gmail.com>2016-11-17 02:25:36 +0300
commit86f435d6c8d74c9aa23aa461d80ac5796f8ca91b (patch)
tree246dd78aad8444772a84cdd11ae0dfb5bc3d9f6d /source/blender/gpu/gawain
parentb757e8298abd92d136d54d2ce4811135dcd20c86 (diff)
Gawain: small note for future Vulkan work
Diffstat (limited to 'source/blender/gpu/gawain')
-rw-r--r--source/blender/gpu/gawain/element.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/gawain/element.h b/source/blender/gpu/gawain/element.h
index 6dcb3676a6f..4e0d5fb0649 100644
--- a/source/blender/gpu/gawain/element.h
+++ b/source/blender/gpu/gawain/element.h
@@ -16,7 +16,7 @@
#define TRACK_INDEX_RANGE 1
typedef enum {
- INDEX_U8 = GL_UNSIGNED_BYTE,
+ INDEX_U8 = GL_UNSIGNED_BYTE, // GL has this, Vulkan does not
INDEX_U16 = GL_UNSIGNED_SHORT,
INDEX_U32 = GL_UNSIGNED_INT
} IndexType;