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:
authorHans Goudey <h.goudey@me.com>2022-09-01 01:01:05 +0300
committerHans Goudey <h.goudey@me.com>2022-09-01 01:01:05 +0300
commitf2a35c3b9a4376666f28ee5c19e49357e35fb76b (patch)
tree39cb37ca9225cc893ce25d1606bd5d6bd4bc39ce /source/blender/render/RE_bake.h
parent85a2a38ba7748b152b3b08f6e1941f8b0becb93d (diff)
parent3a605b23d02263be6bca9046e20b46a60832d971 (diff)
Merge branch 'master' into refactor-mesh-remove-pointers
Diffstat (limited to 'source/blender/render/RE_bake.h')
-rw-r--r--source/blender/render/RE_bake.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/render/RE_bake.h b/source/blender/render/RE_bake.h
index 56c66df5925..ebfc7509504 100644
--- a/source/blender/render/RE_bake.h
+++ b/source/blender/render/RE_bake.h
@@ -7,6 +7,8 @@
#pragma once
+#include "RE_pipeline.h"
+
struct Depsgraph;
struct ImBuf;
struct MLoopUV;
@@ -24,6 +26,9 @@ typedef struct BakeImage {
int width;
int height;
size_t offset;
+
+ /* For associating render result layer with image. */
+ char render_layer_name[RE_MAXNAME];
} BakeImage;
typedef struct BakeTargets {