Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BlenderTextureManager.cpp « blender_interface « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d731af42d0ecc4c66eca7b9f1a607cfd26f758d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include "BlenderTextureManager.h"


BlenderTextureManager::BlenderTextureManager ()
: TextureManager()
{
  //_brushes_path = Config::getInstance()...
}

BlenderTextureManager::~BlenderTextureManager ()
{
}

void BlenderTextureManager::loadStandardBrushes()
{
  //  getBrushTextureIndex(TEXTURES_DIR "/brushes/charcoalAlpha.bmp", Stroke::HUMID_MEDIUM);
  //  getBrushTextureIndex(TEXTURES_DIR "/brushes/washbrushAlpha.bmp", Stroke::HUMID_MEDIUM);
  //  getBrushTextureIndex(TEXTURES_DIR "/brushes/oil.bmp", Stroke::HUMID_MEDIUM);
  //  getBrushTextureIndex(TEXTURES_DIR "/brushes/oilnoblend.bmp", Stroke::HUMID_MEDIUM);
  //  getBrushTextureIndex(TEXTURES_DIR "/brushes/charcoalAlpha.bmp", Stroke::DRY_MEDIUM);
  //  getBrushTextureIndex(TEXTURES_DIR "/brushes/washbrushAlpha.bmp", Stroke::DRY_MEDIUM);
  //  getBrushTextureIndex(TEXTURES_DIR "/brushes/opaqueDryBrushAlpha.bmp", Stroke::OPAQUE_MEDIUM);
  //  getBrushTextureIndex(TEXTURES_DIR "/brushes/opaqueBrushAlpha.bmp", Stroke::OPAQUE_MEDIUM);
  //_defaultTextureId = getBrushTextureIndex("smoothAlpha.bmp", Stroke::OPAQUE_MEDIUM);
}


unsigned
BlenderTextureManager::loadBrush(string sname, Stroke::MediumType mediumType)
{
//   GLuint texId;
//   glGenTextures(1, &texId);
//   bool found = false;
//   vector<string> pathnames;
//   string path; //soc
//   StringUtils::getPathName(TextureManager::Options::getBrushesPath(),
//   sname,
//   pathnames);
//   for (vector<string>::const_iterator j = pathnames.begin(); j != pathnames.end(); j++) {
//     path = j->c_str();
//     //soc if(QFile::exists(path)){
// 	if( BLI_exists( const_cast<char *>(path.c_str()) ) ) {
//       found = true;
//       break;
//     }
//   }
//   if(!found)
//     return 0;
//   // Brush texture
//   cout << "Loading brush texture..." << endl;
//   switch(mediumType){
//   case Stroke::DRY_MEDIUM:
//     //soc prepareTextureLuminance((const char*)path.toAscii(), texId);
// 	prepareTextureLuminance(StringUtils::toAscii(path), texId);
//     break;
//   case Stroke::HUMID_MEDIUM:
//   case Stroke::OPAQUE_MEDIUM:
//   default:
//     //soc prepareTextureAlpha((const char*)path.toAscii(), texId);
// 	prepareTextureAlpha(StringUtils::toAscii(path), texId);
//     break;
//   }
//   cout << "Done." << endl << endl;
// 
//   return texId;
//
	return 0;
}