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:
authorClément Foucault <foucault.clem@gmail.com>2018-12-08 17:53:23 +0300
committerClément Foucault <foucault.clem@gmail.com>2018-12-10 21:02:17 +0300
commita99eb0ca689c8116964032faf8425cfba16759bc (patch)
tree1e189688e8aab59c01f1fadf24ce523fc969069c /source/blender/gpu/GPU_element.h
parentf179ac9fc163b1f94efe7079357a31beb9fcd544 (diff)
GPU: Cleanup: Rename vbo to ibo for index buffers
Diffstat (limited to 'source/blender/gpu/GPU_element.h')
-rw-r--r--source/blender/gpu/GPU_element.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/GPU_element.h b/source/blender/gpu/GPU_element.h
index 9d2458ef1aa..c16a3d8b4a1 100644
--- a/source/blender/gpu/GPU_element.h
+++ b/source/blender/gpu/GPU_element.h
@@ -53,7 +53,7 @@ typedef struct GPUIndexBuf {
uint max_index;
uint base_index;
#endif
- uint32_t vbo_id; /* 0 indicates not yet sent to VRAM */
+ uint32_t ibo_id; /* 0 indicates not yet sent to VRAM */
bool use_prim_restart;
} GPUIndexBuf;