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-09-25 20:35:53 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-09-25 20:35:53 +0400
commit4be21b18f83a7606fdb764caa537e42ec9aa72fc (patch)
treebddf912a7cb5a05a1540c2a7b2038136444b3390 /source/blender/freestyle/intern/stroke/StrokeRenderer.cpp
parent7bb09a8a1cc188302c0aefaeed77d0d0a168cfd8 (diff)
soc-2008-mxcurioni: corrected texture loading feedback, removed paper textures from the project
Diffstat (limited to 'source/blender/freestyle/intern/stroke/StrokeRenderer.cpp')
-rwxr-xr-xsource/blender/freestyle/intern/stroke/StrokeRenderer.cpp27
1 files changed, 1 insertions, 26 deletions
diff --git a/source/blender/freestyle/intern/stroke/StrokeRenderer.cpp b/source/blender/freestyle/intern/stroke/StrokeRenderer.cpp
index e747fb4f5cd..19e5ba35fed 100755
--- a/source/blender/freestyle/intern/stroke/StrokeRenderer.cpp
+++ b/source/blender/freestyle/intern/stroke/StrokeRenderer.cpp
@@ -48,11 +48,6 @@ bool StrokeRenderer::loadTextures()
return true;
}
-// unsigned int StrokeRenderer::getPaperTextureIndex(unsigned int index)
-// {
- // return _textureManager->getPaperTextureIndex(index);
-// }
-
/**********************************/
/* */
@@ -67,9 +62,6 @@ LIB_STROKE_EXPORT
TextureManager* TextureManager::_pInstance = 0;
LIB_STROKE_EXPORT
-vector<string> TextureManager::_papertextures;
-
-LIB_STROKE_EXPORT
string TextureManager::_patterns_path;
LIB_STROKE_EXPORT
@@ -77,7 +69,6 @@ string TextureManager::_brushes_path;
TextureManager::TextureManager ()
{
- _papertexname = NULL;
_hasLoadedTextures=false;
_pInstance = this;
_defaultTextureId = 0;
@@ -85,8 +76,6 @@ TextureManager::TextureManager ()
TextureManager::~TextureManager ()
{
- if (_papertexname)
- delete _papertexname;
if(!_brushesMap.empty())
_brushesMap.clear();
_pInstance = 0;
@@ -95,8 +84,7 @@ TextureManager::~TextureManager ()
void TextureManager::load()
{
if(_hasLoadedTextures)
- return ;
- loadPapers();
+ return;
loadStandardBrushes();
_hasLoadedTextures = true;
}
@@ -116,14 +104,6 @@ unsigned TextureManager::getBrushTextureIndex(string name, Stroke::MediumType lo
}
}
-vector<string>& TextureManager::Options::getPaperTextures() {
- return _papertextures;
-}
-
-void TextureManager::Options::setPaperTextures(const vector<string>& sl) {
- _papertextures = sl;
-}
-
void TextureManager::Options::setPatternsPath(const string& path) {
_patterns_path = path;
}
@@ -139,8 +119,3 @@ void TextureManager::Options::setBrushesPath(const string& path) {
string TextureManager::Options::getBrushesPath() {
return _brushes_path;
}
-
-unsigned TextureManager::getPaperTexturesNumber() {
- return _papertextures.size();
-}
-