[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [30168] branches/soc-2008-mxcurioni/source /blender/freestyle: Removed the OpenGL-based stroke renderer that was no longer used.

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Sat Jul 10 02:09:05 CEST 2010


Revision: 30168
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=30168
Author:   kjym3
Date:     2010-07-10 02:09:05 +0200 (Sat, 10 Jul 2010)

Log Message:
-----------
Removed the OpenGL-based stroke renderer that was no longer used.

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/source/blender/freestyle/SConscript
    branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.cpp

Removed Paths:
-------------
    branches/soc-2008-mxcurioni/source/blender/freestyle/intern/rendering/

Modified: branches/soc-2008-mxcurioni/source/blender/freestyle/SConscript
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/SConscript	2010-07-09 23:14:07 UTC (rev 30167)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/SConscript	2010-07-10 00:09:05 UTC (rev 30168)
@@ -53,10 +53,6 @@
 prefix = 'intern/stroke'
 stroke_sources = env.Glob(prefix + '/*.cpp')
 
-#	rendering
-prefix = 'intern/rendering'
-rendering_sources = env.Glob(prefix + '/GL*.cpp')
-
 # 	application
 prefix = 'intern/application'
 application_sources = env.Glob(prefix + '/*.cpp')
@@ -73,7 +69,7 @@
 				+ env.Glob(prefix + '/*/*/*/*.cpp')
 
 sources = 	system_sources + image_sources + geometry_sources + scene_graph_sources \
-		  +	winged_edge_sources + view_map_sources + stroke_sources + rendering_sources \
+		  + winged_edge_sources + view_map_sources + stroke_sources \
 		  + application_sources + interface_sources + python_sources
 
 env.BlenderLib (libname="bf_freestyle",

Modified: branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.cpp
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.cpp	2010-07-09 23:14:07 UTC (rev 30167)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.cpp	2010-07-10 00:09:05 UTC (rev 30168)
@@ -20,14 +20,11 @@
 ///////////////////////////////////////////////////////////////////////////////
 
 #include "Controller.h"
-#include "../rendering/GLBlendEquation.h"
 #include "AppView.h"
 #include "../image/Image.h"
 #include "../system/TimeStamp.h"
 #include "../stroke/StrokeRenderer.h"
 #include "AppCanvas.h"
-#include "../rendering/GLRenderer.h"
-#include "../rendering/GLStrokeRenderer.h"
 #include "AppConfig.h"
 
 #include "../system/StringUtils.h"





More information about the Bf-blender-cvs mailing list