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:
authorCampbell Barton <ideasman42@gmail.com>2021-08-17 07:46:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-17 07:46:46 +0300
commitba055493a05a1dbf609dece130cc1ac334f50228 (patch)
tree95c0382cb6e5df2f946c9c203cd053b5af957643 /source/blender/python
parentd60e28093f8b3145d099ca696e0ddc2d0c9850ed (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/gpu/gpu_py_platform.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/source/blender/python/gpu/gpu_py_platform.c b/source/blender/python/gpu/gpu_py_platform.c
index 7d10f0e9b43..62310a83642 100644
--- a/source/blender/python/gpu/gpu_py_platform.c
+++ b/source/blender/python/gpu/gpu_py_platform.c
@@ -76,11 +76,17 @@ static PyObject *pygpu_platform_version_get(PyObject *UNUSED(self))
* \{ */
static struct PyMethodDef pygpu_platform__tp_methods[] = {
- {"vendor_get", (PyCFunction)pygpu_platform_vendor_get, METH_NOARGS,
+ {"vendor_get",
+ (PyCFunction)pygpu_platform_vendor_get,
+ METH_NOARGS,
pygpu_platform_vendor_get_doc},
- {"renderer_get", (PyCFunction)pygpu_platform_renderer_get, METH_NOARGS,
+ {"renderer_get",
+ (PyCFunction)pygpu_platform_renderer_get,
+ METH_NOARGS,
pygpu_platform_renderer_get_doc},
- {"version_get", (PyCFunction)pygpu_platform_version_get, METH_NOARGS,
+ {"version_get",
+ (PyCFunction)pygpu_platform_version_get,
+ METH_NOARGS,
pygpu_platform_version_get_doc},
{NULL, NULL, 0, NULL},
};