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/source
diff options
context:
space:
mode:
authorJeroen Bakker <jeroen@blender.org>2022-02-18 10:29:32 +0300
committerJeroen Bakker <jeroen@blender.org>2022-02-18 10:29:32 +0300
commit5c6eefa85047cded7ea3a269cf334a1f316bf032 (patch)
treeea63fa9d8ad4c746ece5d65ebb4be6d082b50611 /source
parentca1f879c0254ba40188a7cdd40f564b12a82cd43 (diff)
parentfe26d188891f95d199e2559929204fddacea2ba8 (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'source')
-rw-r--r--source/blender/compositor/operations/COM_CompositorOperation.cc7
-rw-r--r--source/blender/draw/engines/image/image_drawing_mode.hh2
-rw-r--r--source/blender/draw/engines/image/image_instance_data.hh25
-rw-r--r--source/blender/draw/engines/image/image_usage.hh59
4 files changed, 70 insertions, 23 deletions
diff --git a/source/blender/compositor/operations/COM_CompositorOperation.cc b/source/blender/compositor/operations/COM_CompositorOperation.cc
index f72e81d82b9..23520364bf0 100644
--- a/source/blender/compositor/operations/COM_CompositorOperation.cc
+++ b/source/blender/compositor/operations/COM_CompositorOperation.cc
@@ -90,11 +90,10 @@ void CompositorOperation::deinit_execution()
re = nullptr;
}
+ Image *image = BKE_image_ensure_viewer(G.main, IMA_TYPE_R_RESULT, "Render Result");
+ BKE_image_partial_update_mark_full_update(image);
BLI_thread_lock(LOCK_DRAW_IMAGE);
- BKE_image_signal(G.main,
- BKE_image_ensure_viewer(G.main, IMA_TYPE_R_RESULT, "Render Result"),
- nullptr,
- IMA_SIGNAL_FREE);
+ BKE_image_signal(G.main, image, nullptr, IMA_SIGNAL_FREE);
BLI_thread_unlock(LOCK_DRAW_IMAGE);
}
else {
diff --git a/source/blender/draw/engines/image/image_drawing_mode.hh b/source/blender/draw/engines/image/image_drawing_mode.hh
index b3d6c3abd18..6ab1bffb3e1 100644
--- a/source/blender/draw/engines/image/image_drawing_mode.hh
+++ b/source/blender/draw/engines/image/image_drawing_mode.hh
@@ -459,7 +459,7 @@ template<typename TextureMethod> class ScreenSpaceDrawingMode : public AbstractD
method.update_screen_uv_bounds();
/* Check for changes in the image user compared to the last time. */
- instance_data->update_image_user(iuser);
+ instance_data->update_image_usage(iuser);
/* Step: Update the GPU textures based on the changes in the image. */
instance_data->update_gpu_texture_allocations();
diff --git a/source/blender/draw/engines/image/image_instance_data.hh b/source/blender/draw/engines/image/image_instance_data.hh
index dcc3b7d15cb..be846799293 100644
--- a/source/blender/draw/engines/image/image_instance_data.hh
+++ b/source/blender/draw/engines/image/image_instance_data.hh
@@ -12,6 +12,7 @@
#include "image_private.hh"
#include "image_shader_params.hh"
#include "image_texture_info.hh"
+#include "image_usage.hh"
#include "image_wrappers.hh"
#include "DRW_render.h"
@@ -25,8 +26,8 @@ constexpr int SCREEN_SPACE_DRAWING_MODE_TEXTURE_LEN = 1;
struct IMAGE_InstanceData {
struct Image *image;
- /** Copy of the last image user to detect iuser differences that require a full update. */
- struct ImageUser last_image_user;
+ /** Usage data of the previous time, to identify changes that require a full update. */
+ ImageUsage last_usage;
PartialImageUpdater partial_update;
@@ -95,23 +96,11 @@ struct IMAGE_InstanceData {
}
}
- void update_image_user(const ImageUser *image_user)
+ void update_image_usage(const ImageUser *image_user)
{
- short requested_pass = image_user ? image_user->pass : 0;
- short requested_layer = image_user ? image_user->layer : 0;
- short requested_view = image_user ? image_user->multi_index : 0;
- /* There is room for 2 multiview textures. When a higher number is requested we should always
- * target the first view slot. This is fine as multi view images aren't used together. */
- if (requested_view > 1) {
- requested_view = 0;
- }
-
- if (last_image_user.pass != requested_pass || last_image_user.layer != requested_layer ||
- last_image_user.multi_index != requested_view) {
-
- last_image_user.pass = requested_pass;
- last_image_user.layer = requested_layer;
- last_image_user.multi_index = requested_view;
+ ImageUsage usage(image, image_user);
+ if (last_usage != usage) {
+ last_usage = usage;
reset_dirty_flag(true);
}
}
diff --git a/source/blender/draw/engines/image/image_usage.hh b/source/blender/draw/engines/image/image_usage.hh
new file mode 100644
index 00000000000..1eadee4481d
--- /dev/null
+++ b/source/blender/draw/engines/image/image_usage.hh
@@ -0,0 +1,59 @@
+/*
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Copyright 2022, Blender Foundation.
+ */
+
+/** \file
+ * \ingroup draw_engine
+ */
+
+#pragma once
+
+/**
+ * ImageUsage contains data of the image and image user to identify changes that require a rebuild
+ * of the texture slots.
+ */
+struct ImageUsage {
+ /** Render pass of the image that is used. */
+ short pass = 0;
+ /** Layer of the image that is used.*/
+ short layer = 0;
+ /** View of the image that is used. */
+ short view = 0;
+
+ ColorManagedColorspaceSettings colorspace_settings;
+ /** IMA_ALPHA_* */
+ char alpha_mode;
+
+ ImageUsage() = default;
+ ImageUsage(const struct Image *image, const struct ImageUser *image_user)
+ {
+ pass = image_user ? image_user->pass : 0;
+ layer = image_user ? image_user->layer : 0;
+ view = image_user ? image_user->multi_index : 0;
+ colorspace_settings = image->colorspace_settings;
+ alpha_mode = image->alpha_mode;
+ }
+
+ bool operator==(const ImageUsage &other) const
+ {
+ return memcmp(this, &other, sizeof(ImageUsage)) == 0;
+ }
+ bool operator!=(const ImageUsage &other) const
+ {
+ return !(*this == other);
+ }
+};