Cleanup: separate format-units for Python argument parsing
With the increased use of multi-character format units and keyword-only arguments these are increasingly difficult to make sense of. Split the string onto multiple lines, one per argument. While verbose it's easier to understand and add new arguments.
This commit is contained in:
@@ -122,7 +122,17 @@ static PyObject *pygpu_texture__tp_new(PyTypeObject *UNUSED(self), PyObject *arg
|
||||
char err_out[256] = "unknown error. See console";
|
||||
|
||||
static const char *_keywords[] = {"size", "layers", "is_cubemap", "format", "data", NULL};
|
||||
static _PyArg_Parser _parser = {"O|$ipO&O!:GPUTexture.__new__", _keywords, 0};
|
||||
static _PyArg_Parser _parser = {
|
||||
"O" /* `size` */
|
||||
"|$" /* Optional keyword only arguments. */
|
||||
"i" /* `layers` */
|
||||
"p" /* `is_cubemap` */
|
||||
"O&" /* `format` */
|
||||
"O!" /* `data` */
|
||||
":GPUTexture.__new__",
|
||||
_keywords,
|
||||
0,
|
||||
};
|
||||
if (!_PyArg_ParseTupleAndKeywordsFast(args,
|
||||
kwds,
|
||||
&_parser,
|
||||
@@ -288,7 +298,14 @@ static PyObject *pygpu_texture_clear(BPyGPUTexture *self, PyObject *args, PyObje
|
||||
PyObject *py_values;
|
||||
|
||||
static const char *_keywords[] = {"format", "value", NULL};
|
||||
static _PyArg_Parser _parser = {"$O&O:clear", _keywords, 0};
|
||||
static _PyArg_Parser _parser = {
|
||||
"$" /* Keyword only arguments. */
|
||||
"O&" /* `format` */
|
||||
"O" /* `value` */
|
||||
":clear",
|
||||
_keywords,
|
||||
0,
|
||||
};
|
||||
if (!_PyArg_ParseTupleAndKeywordsFast(
|
||||
args, kwds, &_parser, PyC_ParseStringEnum, &pygpu_dataformat, &py_values)) {
|
||||
return NULL;
|
||||
|
||||
Reference in New Issue
Block a user