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:
Diffstat (limited to 'source/blender/python/gpu/gpu_py_batch.c')
-rw-r--r--source/blender/python/gpu/gpu_py_batch.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/source/blender/python/gpu/gpu_py_batch.c b/source/blender/python/gpu/gpu_py_batch.c
index 8e803350b53..5214d156adf 100644
--- a/source/blender/python/gpu/gpu_py_batch.c
+++ b/source/blender/python/gpu/gpu_py_batch.c
@@ -295,18 +295,10 @@ PyDoc_STRVAR(
"\n"
" Reusable container for drawable geometry.\n"
"\n"
- " :arg type: One of these primitive types: {\n"
- " `POINTS`,\n"
- " `LINES`,\n"
- " `TRIS`,\n"
- " `LINE_STRIP`,\n"
- " `LINE_LOOP`,\n"
- " `TRI_STRIP`,\n"
- " `TRI_FAN`,\n"
- " `LINES_ADJ`,\n"
- " `TRIS_ADJ`,\n"
- " `LINE_STRIP_ADJ` }\n"
- " :type type: `str`\n"
+ " :arg type: The primitive type of geometry to be drawn.\n"
+ " Possible values are `POINTS`, `LINES`, `TRIS`, `LINE_STRIP`, `LINE_LOOP`, `TRI_STRIP`, "
+ "`TRI_FAN`, `LINES_ADJ`, `TRIS_ADJ` and `LINE_STRIP_ADJ`.\n"
+ " :type type: str\n"
" :arg buf: Vertex buffer containing all or some of the attributes required for drawing.\n"
" :type buf: :class:`gpu.types.GPUVertBuf`\n"
" :arg elem: An optional index buffer.\n"