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:
authorBrecht Van Lommel <brecht@blender.org>2022-03-22 02:54:42 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-03-22 03:30:19 +0300
commit8bccc7d8611a7379adc8d981bca18938ab0a5c27 (patch)
tree2e58f0f4d183ecf67ef2fa38f1b22d939818dfae /source/blender/render
parent9cf40eee4bd1859ac0968e3988ed0c252eab446e (diff)
Cleanup: add proper IMB_openexr.h instead of including file from intern/
Diffstat (limited to 'source/blender/render')
-rw-r--r--source/blender/render/RE_pipeline.h4
-rw-r--r--source/blender/render/intern/render_result.c3
2 files changed, 3 insertions, 4 deletions
diff --git a/source/blender/render/RE_pipeline.h b/source/blender/render/RE_pipeline.h
index ed370d89dc2..cac320ad246 100644
--- a/source/blender/render/RE_pipeline.h
+++ b/source/blender/render/RE_pipeline.h
@@ -62,8 +62,8 @@ typedef struct RenderView {
typedef struct RenderPass {
struct RenderPass *next, *prev;
int channels;
- char name[64]; /* amount defined in openexr_multi.h */
- char chan_id[8]; /* amount defined in openexr_multi.h */
+ char name[64]; /* amount defined in IMB_openexr.h */
+ char chan_id[8]; /* amount defined in IMB_openexr.h */
float *rect;
int rectx, recty;
diff --git a/source/blender/render/intern/render_result.c b/source/blender/render/intern/render_result.c
index 212df1e1c00..2fe6e6d3caa 100644
--- a/source/blender/render/intern/render_result.c
+++ b/source/blender/render/intern/render_result.c
@@ -34,8 +34,7 @@
#include "IMB_colormanagement.h"
#include "IMB_imbuf.h"
#include "IMB_imbuf_types.h"
-
-#include "intern/openexr/openexr_multi.h"
+#include "IMB_openexr.h"
#include "RE_engine.h"