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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-02-26 07:16:10 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-02-26 07:17:01 +0300
commitdc257318d0a372bfc9a7b34782ee1717467fef04 (patch)
tree63b80a756ad74172f412bd7f835fe3da3e042e12
parentc05d83bc7632367f0a7e910d69d470ab89cf649d (diff)
PyAPI Doc: Add missing Imbuf documentantion
The documentation existed but it was never added to the script.
-rw-r--r--doc/python_api/sphinx_doc_gen.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index b74ad3c7dc2..60058d5d17f 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -223,6 +223,7 @@ else:
"aud",
"bgl",
"blf",
+ "imbuf",
"bmesh",
"bmesh.ops",
"bmesh.types",
@@ -1779,7 +1780,7 @@ def write_rst_contents(basepath):
standalone_modules = (
# submodules are added in parent page
- "mathutils", "freestyle", "bgl", "blf", "gpu", "gpu_extras",
+ "mathutils", "freestyle", "bgl", "blf", "imbuf", "gpu", "gpu_extras",
"aud", "bpy_extras", "idprop.types", "bmesh",
)
@@ -1886,6 +1887,7 @@ def write_rst_importable_modules(basepath):
# C_modules
"aud": "Audio System",
"blf": "Font Drawing",
+ "imbuf": "Image Buffer",
"gpu": "GPU Shader Module",
"gpu.types": "GPU Types",
"gpu.matrix": "GPU Matrix",