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:
authorGermano <germano.costa@ig.com.br>2017-09-27 22:07:06 +0300
committerGermano <germano.costa@ig.com.br>2017-09-27 22:07:06 +0300
commit5c6e3ff4972f9485409f7d37e3752917d44e0f3c (patch)
tree7b6c77828d2da2600996f1bfd6a56d8b179cdbc9 /source/blender/python
parent5d2344829085f5df0361273c3ae7d9792b26ae48 (diff)
bgl module: extend `gl_buffer_type_from_py_format_char` function to work with more string formats
Only basic types of character codes were being used
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/generic/bgl.c28
1 files changed, 20 insertions, 8 deletions
diff --git a/source/blender/python/generic/bgl.c b/source/blender/python/generic/bgl.c
index 45087241d9b..ff6345cb6d6 100644
--- a/source/blender/python/generic/bgl.c
+++ b/source/blender/python/generic/bgl.c
@@ -472,20 +472,32 @@ int BGL_typeSize(int type)
return -1;
}
-static int gl_buffer_type_from_py_format_char(char format)
+static int gl_buffer_type_from_py_format_char(char *typestr)
{
+ if (ELEM(typestr[0], '<', '>', '|')) {
+ typestr += 1;
+ }
+ char format = typestr[0];
+ char byte_num = typestr[1];
+
switch (format) {
+ case 't':
case 'b':
- return GL_BYTE;
case 'h':
+ if (!byte_num) return GL_BYTE;
case 'i':
- return GL_SHORT;
+ if (!byte_num) return GL_SHORT;
case 'l':
- return GL_INT;
+ if (!byte_num || byte_num == '4') return GL_INT;
+ if (byte_num == '1') return GL_BYTE;
+ if (byte_num == '2') return GL_SHORT;
+ break;
case 'f':
- return GL_FLOAT;
+ if (!byte_num) return GL_FLOAT;
case 'd':
- return GL_DOUBLE;
+ if (!byte_num || byte_num == '8') return GL_DOUBLE;
+ if (byte_num == '4') return GL_FLOAT;
+ break;
}
return -1; /* UNKNOWN */
}
@@ -782,9 +794,9 @@ static PyObject *Buffer_new(PyTypeObject *UNUSED(type), PyObject *args, PyObject
return NULL;
}
- if (type != gl_buffer_type_from_py_format_char(*pybuffer.format)) {
+ if (type != gl_buffer_type_from_py_format_char(pybuffer.format)) {
PyErr_Format(PyExc_TypeError,
- "`GL_TYPE` and `format` of object with buffer interface do not match");
+ "`GL_TYPE` and `typestr` of object with buffer interface do not match. '%s'", pybuffer.format);
}
else if (ndimensions != pybuffer.ndim ||
!compare_dimensions(ndimensions, dimensions, pybuffer.shape))