From dc257318d0a372bfc9a7b34782ee1717467fef04 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Tue, 25 Feb 2020 23:16:10 -0500 Subject: [PATCH] PyAPI Doc: Add missing Imbuf documentantion The documentation existed but it was never added to the script. --- doc/python_api/sphinx_doc_gen.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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",