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:
authorJeroen Bakker <jeroen@blender.org>2022-02-14 11:42:03 +0300
committerJeroen Bakker <jeroen@blender.org>2022-02-14 11:42:03 +0300
commitefac4db166292229e4e2ab7afa6034d637893bd6 (patch)
treeda96af9ab754c24984fbb0a12b8bd9dc90b88d0e /source/blender/compositor
parent08882ddfc2ba8aced32c97275a72234223249c43 (diff)
parentf0e32ef4ff34f8cf8ff85706fd863a858f5849b6 (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/operations/COM_ViewerOperation.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_ViewerOperation.cc b/source/blender/compositor/operations/COM_ViewerOperation.cc
index a00e537bd0b..bc7e08ee98a 100644
--- a/source/blender/compositor/operations/COM_ViewerOperation.cc
+++ b/source/blender/compositor/operations/COM_ViewerOperation.cc
@@ -200,7 +200,10 @@ void ViewerOperation::update_image(const rcti *rect)
rect->ymin,
rect->xmax,
rect->ymax);
- image_->gpuflag |= IMA_GPU_REFRESH;
+
+ /* This could be improved to use partial updates. For now disabled as the full frame compositor
+ * would not use partial frames anymore and the image engine requires more testing.*/
+ BKE_image_partial_update_mark_full_update(image_);
this->update_draw();
}