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 Cavalcante <germano.costa@ig.com.br>2021-05-15 20:13:22 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2021-05-15 20:13:22 +0300
commit3e6609a0dcb064489d91f685583392d8a73219b9 (patch)
treebac0ad6a4e111fb6c563f37958863bcf1d230877 /source/blender/python
parenta56cc26b4825528a39318a9618ffff1503c8cac8 (diff)
Cleanup: silence unused parameter warnings
Introduced in rB48fa029dd11b.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/gpu/gpu_py_platform.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/gpu/gpu_py_platform.c b/source/blender/python/gpu/gpu_py_platform.c
index 5247646fcb6..e49ad18dfd8 100644
--- a/source/blender/python/gpu/gpu_py_platform.c
+++ b/source/blender/python/gpu/gpu_py_platform.c
@@ -33,17 +33,17 @@
/** \name Functions
* \{ */
-static PyObject *pygpu_platform_vendor_get(PyObject *UNUSED(self), PyObject *value)
+static PyObject *pygpu_platform_vendor_get(PyObject *UNUSED(self))
{
return PyUnicode_FromString(GPU_platform_vendor());
}
-static PyObject *pygpu_platform_renderer_get(PyObject *UNUSED(self), PyObject *value)
+static PyObject *pygpu_platform_renderer_get(PyObject *UNUSED(self))
{
return PyUnicode_FromString(GPU_platform_renderer());
}
-static PyObject *pygpu_platform_version_get(PyObject *UNUSED(self), PyObject *value)
+static PyObject *pygpu_platform_version_get(PyObject *UNUSED(self))
{
return PyUnicode_FromString(GPU_platform_version());
}