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-04-04 15:00:33 +0300
committerJeroen Bakker <jeroen@blender.org>2022-04-04 15:12:33 +0300
commit9c2b5900c0add01a6fb0cbef234c78eb04ec9ff4 (patch)
tree225ded5ad2d4364cdf90f3b4c0cf68368cf3ddf6 /source/blender/draw/engines/image/image_drawing_mode.hh
parenta56f53ad5615afc4b9ed74907de21376c14b3775 (diff)
Move ImageTileWrapper to BKE.
ImageTileWrapper is a wrapper around ImageTile to centralize tile calculations when using CPP. Currentry used by the image engine and will be used for the 3d texturing brush project.
Diffstat (limited to 'source/blender/draw/engines/image/image_drawing_mode.hh')
-rw-r--r--source/blender/draw/engines/image/image_drawing_mode.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/engines/image/image_drawing_mode.hh b/source/blender/draw/engines/image/image_drawing_mode.hh
index 14529797405..a1cd110e1d8 100644
--- a/source/blender/draw/engines/image/image_drawing_mode.hh
+++ b/source/blender/draw/engines/image/image_drawing_mode.hh
@@ -16,7 +16,6 @@
#include "image_batches.hh"
#include "image_private.hh"
-#include "image_wrappers.hh"
namespace blender::draw::image_engine {
@@ -74,6 +73,7 @@ struct OneTextureMethod {
};
using namespace blender::bke::image::partial_update;
+using namespace blender::bke::image;
template<typename TextureMethod> class ScreenSpaceDrawingMode : public AbstractDrawingMode {
private: