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
path: root/doc
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-10-16 00:55:21 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-10-16 00:55:31 +0300
commit138fdf78ba4c4d691e1ed3a474735b5cffa553b7 (patch)
tree3562829bdb0d41a9166181e55d863c0174a0a6bc /doc
parent73fbd3eebd3f47311785a488dfdeb7353ca10563 (diff)
PyAPI Docs: Fix example not using keyword parameter
Fixes T92238
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/examples/gpu.9.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/python_api/examples/gpu.9.py b/doc/python_api/examples/gpu.9.py
index b0400ce7809..318c0a74ceb 100644
--- a/doc/python_api/examples/gpu.9.py
+++ b/doc/python_api/examples/gpu.9.py
@@ -32,7 +32,7 @@ def draw():
context.region,
view_matrix,
projection_matrix,
- True)
+ do_color_management=True)
gpu.state.depth_mask_set(False)
draw_texture_2d(offscreen.texture_color, (10, 10), WIDTH, HEIGHT)