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.h
parent7bb09a8a1cc188302c0aefaeed77d0d0a168cfd8 (diff)
soc-2008-mxcurioni: corrected texture loading feedback, removed paper textures from the project
Diffstat (limited to 'source/blender/freestyle/intern/stroke/StrokeRenderer.h')
-rwxr-xr-xsource/blender/freestyle/intern/stroke/StrokeRenderer.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/freestyle/intern/stroke/StrokeRenderer.h b/source/blender/freestyle/intern/stroke/StrokeRenderer.h
index d192fe30145..339e401aa41 100755
--- a/source/blender/freestyle/intern/stroke/StrokeRenderer.h
+++ b/source/blender/freestyle/intern/stroke/StrokeRenderer.h
@@ -59,16 +59,12 @@ public:
static TextureManager * getInstance() {return _pInstance;}
void load () ;
unsigned getBrushTextureIndex(string name, Stroke::MediumType iType = Stroke::OPAQUE_MEDIUM) ;
- unsigned getPaperTextureIndex(unsigned i) { return _papertexname[i]; }
- static unsigned getPaperTexturesNumber();
inline bool hasLoaded() const {return _hasLoadedTextures;}
inline unsigned int getDefaultTextureId() const {return _defaultTextureId;}
struct LIB_STROKE_EXPORT Options
{
- static void setPaperTextures(const vector<string>& sl);
- static vector<string>& getPaperTextures();
static void setPatternsPath(const string& path);
static string getPatternsPath();
@@ -78,7 +74,6 @@ public:
};
protected:
- virtual void loadPapers() = 0;
virtual void loadStandardBrushes() = 0;
virtual unsigned loadBrush(string fileName, Stroke::MediumType = Stroke::OPAQUE_MEDIUM) = 0;
@@ -97,10 +92,8 @@ public:
static TextureManager * _pInstance;
bool _hasLoadedTextures;
brushesMap _brushesMap;
- unsigned* _papertexname;
static string _patterns_path;
static string _brushes_path;
- static vector<string> _papertextures;
unsigned int _defaultTextureId;
};
@@ -132,7 +125,6 @@ class LIB_STROKE_EXPORT StrokeRenderer
static bool loadTextures() ;
//static unsigned int getTextureIndex(unsigned int index) ;
- //static unsigned int getPaperTextureIndex(unsigned int index) ;
static TextureManager *_textureManager;
};