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_batch.c')
-rw-r--r--source/blender/python/gpu/gpu_py_batch.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/python/gpu/gpu_py_batch.c b/source/blender/python/gpu/gpu_py_batch.c
index bb7028c11ab..60b78b51890 100644
--- a/source/blender/python/gpu/gpu_py_batch.c
+++ b/source/blender/python/gpu/gpu_py_batch.c
@@ -141,11 +141,12 @@ static PyObject *bpygpu_Batch_vertbuf_add(BPyGPUBatch *self, BPyGPUVertBuf *py_b
return NULL;
}
- if (self->batch->verts[0]->vertex_len != py_buf->buf->vertex_len) {
+ if (GPU_vertbuf_get_vertex_len(self->batch->verts[0]) !=
+ GPU_vertbuf_get_vertex_len(py_buf->buf)) {
PyErr_Format(PyExc_TypeError,
"Expected %d length, got %d",
- self->batch->verts[0]->vertex_len,
- py_buf->buf->vertex_len);
+ GPU_vertbuf_get_vertex_len(self->batch->verts[0]),
+ GPU_vertbuf_get_vertex_len(py_buf->buf));
return NULL;
}