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>2022-02-21 05:31:08 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2022-02-22 03:48:17 +0300
commit75be58c63db4ecc365e56d7546e089494c3d2da0 (patch)
tree2c249bb2b75d669912c84f6c633c6520263b3f70 /source/blender/python
parent18d3d283ecf548f22ea548cd01ffbf5afa93974d (diff)
Fix errors in 'gpu.state' documentation
`blend_depth_test_get` --> `depth_test_get` `depth_mask_set_get` --> `depth_mask_get` Thanks to @SBCV for pointing out these inconsistencies.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/gpu/gpu_py_state.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/gpu/gpu_py_state.c b/source/blender/python/gpu/gpu_py_state.c
index 746074f0706..17b350deb14 100644
--- a/source/blender/python/gpu/gpu_py_state.c
+++ b/source/blender/python/gpu/gpu_py_state.c
@@ -165,7 +165,7 @@ static PyObject *pygpu_state_depth_test_set(PyObject *UNUSED(self), PyObject *va
}
PyDoc_STRVAR(pygpu_state_depth_test_get_doc,
- ".. function:: blend_depth_test_get()\n"
+ ".. function:: depth_test_get()\n"
"\n"
" Current depth_test equation.\n"
"\n");
@@ -193,7 +193,7 @@ static PyObject *pygpu_state_depth_mask_set(PyObject *UNUSED(self), PyObject *va
}
PyDoc_STRVAR(pygpu_state_depth_mask_get_doc,
- ".. function:: depth_mask_set_get()\n"
+ ".. function:: depth_mask_get()\n"
"\n"
" Writing status in the depth component.\n");
static PyObject *pygpu_state_depth_mask_get(PyObject *UNUSED(self))