Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/application/AppCanvas.cpp
| /* SPDX-License-Identifier: GPL-2.0-or-later */ | /* SPDX-License-Identifier: GPL-2.0-or-later */ | ||||
| /** \file | /** \file | ||||
| * \ingroup freestyle | * \ingroup freestyle | ||||
| */ | */ | ||||
| #include "AppCanvas.h" | #include "AppCanvas.h" | ||||
| #include "AppConfig.h" | |||||
| #include "AppView.h" | #include "AppView.h" | ||||
| #include "Controller.h" | #include "Controller.h" | ||||
| #include "../image/Image.h" | #include "../image/Image.h" | ||||
| #include "../stroke/StrokeRenderer.h" | #include "../stroke/StrokeRenderer.h" | ||||
| #include "../stroke/StyleModule.h" | #include "../stroke/StyleModule.h" | ||||
| #include "../system/TimeStamp.h" | #include "../system/TimeStamp.h" | ||||
| #include "../system/StringUtils.h" | #include "../system/StringUtils.h" | ||||
| namespace Freestyle { | namespace Freestyle { | ||||
| AppCanvas::AppCanvas() | AppCanvas::AppCanvas() | ||||
| { | { | ||||
| _pViewer = nullptr; | _pViewer = nullptr; | ||||
| _MapsPath = Config::Path::getInstance()->getMapsDir().c_str(); | |||||
| } | } | ||||
| AppCanvas::AppCanvas(AppView *iViewer) | AppCanvas::AppCanvas(AppView *iViewer) | ||||
| { | { | ||||
| _pViewer = iViewer; | _pViewer = iViewer; | ||||
| } | } | ||||
| AppCanvas::AppCanvas(const AppCanvas &iBrother) : Canvas(iBrother) | AppCanvas::AppCanvas(const AppCanvas &iBrother) : Canvas(iBrother) | ||||
| ▲ Show 20 Lines • Show All 189 Lines • Show Last 20 Lines | |||||