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:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-05-27 18:13:16 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-05-27 18:13:16 +0400
commit21c479789619767e9c1edb5e8dc4e301d900f179 (patch)
tree1af61f749f3d2a8b47a5c5f8ce68cf7f750d99d1 /source/blender/freestyle/intern/app_blender
parent4245f8160555f12139a44d4bb8c3eac7bfc5970b (diff)
soc-2008-mxcurioni: Freestyle execution now works flawlessly (Python runtime loads appropriate modules, using SWIG wrapper), but does not render anything yet (render window OpenGL context not used yet). Currently, the SWIG wrapper library needs to be manually compiled (see SWIG section in source/blender/freestyle/SConscript for details). I am missing some knowledge on scons to create it automatically from the SConscript. Once I find that information, I'll make it automatic and for different platforms.
I also corrected a simple GLStrokeRenderer bug for texture loading (not in original Freestyle code). Apparently, IMB_loadiffname doesn't recognize the paper's texture depth so a work-around will have to be found.
Diffstat (limited to 'source/blender/freestyle/intern/app_blender')
-rwxr-xr-xsource/blender/freestyle/intern/app_blender/Controller.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/app_blender/Controller.cpp b/source/blender/freestyle/intern/app_blender/Controller.cpp
index 38f0ff0b7f0..bd234746e2b 100755
--- a/source/blender/freestyle/intern/app_blender/Controller.cpp
+++ b/source/blender/freestyle/intern/app_blender/Controller.cpp
@@ -1098,7 +1098,6 @@ void Controller::init_options(){
setFrontBufferFlag(false);
setBackBufferFlag(true);
-
// Ridges and Valleys
setComputeRidgesAndValleysFlag( false );
@@ -1107,4 +1106,6 @@ void Controller::init_options(){
setSphereRadius(1);
setSuggestiveContourKrDerivativeEpsilon(0);
+ // soc: initialize canvas
+ _Canvas->init();
}