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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-30 10:50:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-01 00:58:27 +0300
commit1e8697cd8094183a3f356bf8564284a31ffb89fc (patch)
tree554b1ac7856f3f168c58476ce53d1953beaa760e /source/blender/freestyle/intern/application
parent5ca8ac51d04c6feb9d29d75fb2525168d30fbe74 (diff)
Cleanup: comments (long lines) in freestyle
Diffstat (limited to 'source/blender/freestyle/intern/application')
-rw-r--r--source/blender/freestyle/intern/application/AppView.h4
-rw-r--r--source/blender/freestyle/intern/application/Controller.cpp6
-rw-r--r--source/blender/freestyle/intern/application/Controller.h20
3 files changed, 15 insertions, 15 deletions
diff --git a/source/blender/freestyle/intern/application/AppView.h b/source/blender/freestyle/intern/application/AppView.h
index 0b029895b8c..deb099349cb 100644
--- a/source/blender/freestyle/intern/application/AppView.h
+++ b/source/blender/freestyle/intern/application/AppView.h
@@ -43,7 +43,7 @@ class AppView {
virtual ~AppView();
public:
- //inherited
+ // inherited
inline unsigned int width()
{
return _width;
@@ -246,7 +246,7 @@ class AppView {
protected:
float _Fovy;
- //The root node container
+ // The root node container
NodeGroup _RootNode;
NodeDrawingStyle *_ModelRootNode;
NodeDrawingStyle *_SilhouetteRootNode;
diff --git a/source/blender/freestyle/intern/application/Controller.cpp b/source/blender/freestyle/intern/application/Controller.cpp
index d516b865eab..4d5ffda5f38 100644
--- a/source/blender/freestyle/intern/application/Controller.cpp
+++ b/source/blender/freestyle/intern/application/Controller.cpp
@@ -179,7 +179,7 @@ Controller::~Controller()
_ProgressBar = NULL;
}
- //delete _current_dirs;
+ // delete _current_dirs;
}
void Controller::setView(AppView *iView)
@@ -300,7 +300,7 @@ int Controller::LoadMesh(Render *re, ViewLayer *view_layer, Depsgraph *depsgraph
_RootNode->AddChild(new NodeViewLayer(*re->scene, *view_layer));
sceneHashFunc.reset();
- //blenderScene->accept(sceneHashFunc);
+ // blenderScene->accept(sceneHashFunc);
_RootNode->accept(sceneHashFunc);
if (G.debug & G_DEBUG_FREESTYLE) {
cout << "Scene hash : " << sceneHashFunc.toString() << endl;
@@ -626,7 +626,7 @@ void Controller::ComputeViewMap()
void Controller::ComputeSteerableViewMap()
{
-#if 0 //soc
+#if 0 // soc
if ((!_Canvas) || (!_ViewMap))
return;
diff --git a/source/blender/freestyle/intern/application/Controller.h b/source/blender/freestyle/intern/application/Controller.h
index b287a515ba1..613ea2cb45c 100644
--- a/source/blender/freestyle/intern/application/Controller.h
+++ b/source/blender/freestyle/intern/application/Controller.h
@@ -58,7 +58,7 @@ class Controller {
void setPassZ(float *buf, int width, int height);
void setContext(bContext *C);
- //soc
+ // soc
void init_options();
int LoadMesh(Render *re, ViewLayer *view_layer, Depsgraph *depsgraph);
@@ -175,15 +175,15 @@ class Controller {
private:
// Main Window:
- //AppMainWindow *_pMainWindow;
+ // AppMainWindow *_pMainWindow;
// List of models currently loaded
vector<string> _ListOfModels;
// Current directories
- //ConfigIO* _current_dirs;
+ // ConfigIO* _current_dirs;
- //View
+ // View
// 3D
AppView *_pView;
@@ -195,7 +195,7 @@ class Controller {
RenderMonitor *_pRenderMonitor;
- //Model
+ // Model
// Drawing Structure
NodeGroup *_RootNode;
@@ -217,7 +217,7 @@ class Controller {
#endif
// debug
- //NodeUser<ViewMap> *_ViewMapNode; // FIXME
+ // NodeUser<ViewMap> *_ViewMapNode; // FIXME
// Chronometer:
Chronometer _Chrono;
@@ -229,7 +229,7 @@ class Controller {
int _edgeTesselationNature;
FastGrid _Grid;
- //HashGrid _Grid;
+ // HashGrid _Grid;
BBox<Vec3r> _Scene3dBBox;
unsigned int _SceneNumFaces;
@@ -241,9 +241,9 @@ class Controller {
int _render_count;
- //AppStyleWindow *_pStyleWindow;
- //AppOptionsWindow *_pOptionsWindow;
- //AppDensityCurvesWindow *_pDensityCurvesWindow;
+ // AppStyleWindow *_pStyleWindow;
+ // AppOptionsWindow *_pOptionsWindow;
+ // AppDensityCurvesWindow *_pDensityCurvesWindow;
ViewMapBuilder::visibility_algo _VisibilityAlgo;