From ba055493a05a1dbf609dece130cc1ac334f50228 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 17 Aug 2021 14:46:46 +1000 Subject: Cleanup: clang-format --- source/blender/python/gpu/gpu_py_platform.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'source/blender/python') 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}, }; -- cgit v1.2.3