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_vertex_format.c')
-rw-r--r--source/blender/python/gpu/gpu_py_vertex_format.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/source/blender/python/gpu/gpu_py_vertex_format.c b/source/blender/python/gpu/gpu_py_vertex_format.c
index 402112d20a3..3e6695419c0 100644
--- a/source/blender/python/gpu/gpu_py_vertex_format.c
+++ b/source/blender/python/gpu/gpu_py_vertex_format.c
@@ -94,7 +94,16 @@ static PyObject *pygpu_vertformat_attr_add(BPyGPUVertFormat *self, PyObject *arg
}
static const char *_keywords[] = {"id", "comp_type", "len", "fetch_mode", NULL};
- static _PyArg_Parser _parser = {"$sO&IO&:attr_add", _keywords, 0};
+ static _PyArg_Parser _parser = {
+ "$" /* Keyword only arguments. */
+ "s" /* `id` */
+ "O&" /* `comp_type` */
+ "I" /* `len` */
+ "O&" /* `fetch_mode` */
+ ":attr_add",
+ _keywords,
+ 0,
+ };
if (!_PyArg_ParseTupleAndKeywordsFast(args,
kwds,
&_parser,