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:
authorLukas Stockner <lukas.stockner@freenet.de>2020-02-13 03:29:30 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2020-02-14 02:33:50 +0300
commit4af74f453d4e41129626f7578c55ac9927f6d02a (patch)
tree3282c0e74e96d3d155e87618f4dfb3ca2157d5b9 /source/blender/render/extern
parentb6572c5430c570130c6f6aec92522fdf9df6365a (diff)
Freestyle: Add option for rendering Freestyle to a separate pass
This allows for more flexibility in Compositing compared to the hardcoded alpha-over that is currently used. Reviewed By: brecht Differential Revision: https://developer.blender.org/D6829
Diffstat (limited to 'source/blender/render/extern')
-rw-r--r--source/blender/render/extern/include/RE_pipeline.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/render/extern/include/RE_pipeline.h b/source/blender/render/extern/include/RE_pipeline.h
index dc18bac541f..40984b6d3b2 100644
--- a/source/blender/render/extern/include/RE_pipeline.h
+++ b/source/blender/render/extern/include/RE_pipeline.h
@@ -228,6 +228,13 @@ struct RenderPass *RE_create_gp_pass(struct RenderResult *rr,
const char *layername,
const char *viewname);
+void RE_create_render_pass(struct RenderResult *rr,
+ const char *name,
+ int channels,
+ const char *chan_id,
+ const char *layername,
+ const char *viewname);
+
/* obligatory initialize call, disprect is optional */
void RE_InitState(struct Render *re,
struct Render *source,