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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-07-15 19:21:27 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-08-12 05:10:20 +0400
commitfc85446c500fbe70515567e94122fc0d8746f3e5 (patch)
treef468d3d79cf395ea443682cdb1a92b42640e2550 /source/blender/freestyle/intern/stroke/StrokeLayer.h
parent4677684cfd18ea92f72bc5f24dc453cb1919e513 (diff)
Freestyle: Added preliminary support for textured strokes in Cycles.
Now the shader node tree of a line style ID datablock is used to define textures as well as their mapping and influence. TODO: Textures alpha channel mapping and influence. TODO: Blend mode in the Output Line Style shader node.
Diffstat (limited to 'source/blender/freestyle/intern/stroke/StrokeLayer.h')
-rw-r--r--source/blender/freestyle/intern/stroke/StrokeLayer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/freestyle/intern/stroke/StrokeLayer.h b/source/blender/freestyle/intern/stroke/StrokeLayer.h
index 91292e237d6..93eca3be8c7 100644
--- a/source/blender/freestyle/intern/stroke/StrokeLayer.h
+++ b/source/blender/freestyle/intern/stroke/StrokeLayer.h
@@ -34,6 +34,10 @@
#include "MEM_guardedalloc.h"
#endif
+extern "C" {
+struct FreestyleLineStyle;
+}
+
namespace Freestyle {
class Stroke;
@@ -63,6 +67,7 @@ public:
/*! Render method */
void ScaleThickness(float iFactor);
+ void SetLineStyle(struct FreestyleLineStyle *iLineStyle);
void Render(const StrokeRenderer *iRenderer);
void RenderBasic(const StrokeRenderer *iRenderer);