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:
-rw-r--r--doc/python_api/sphinx_doc_gen.py3
-rw-r--r--release/scripts/modules/gpu_extras/batch.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 5de3eaeb2a3..ae6e53491fd 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1721,7 +1721,7 @@ def write_rst_contents(basepath):
standalone_modules = (
# submodules are added in parent page
- "mathutils", "freestyle", "bgl", "blf", "gpu",
+ "mathutils", "freestyle", "bgl", "blf", "gpu", "gpu_extras",
"aud", "bpy_extras", "idprop.types", "bmesh",
)
@@ -1823,6 +1823,7 @@ def write_rst_importable_modules(basepath):
"bpy.path": "Path Utilities",
"bpy.utils": "Utilities",
"bpy_extras": "Extra Utilities",
+ "gpu_extras": "GPU Utilities",
# C_modules
"aud": "Audio System",
diff --git a/release/scripts/modules/gpu_extras/batch.py b/release/scripts/modules/gpu_extras/batch.py
index 6a403a66089..2a1a4dc723c 100644
--- a/release/scripts/modules/gpu_extras/batch.py
+++ b/release/scripts/modules/gpu_extras/batch.py
@@ -17,7 +17,7 @@
# ***** END GPL LICENSE BLOCK *****
__all__ = (
- "batch_for_shader"
+ "batch_for_shader",
)