1 | /* |
---|
2 | orxonox - the future of 3D-vertical-scrollers |
---|
3 | |
---|
4 | Copyright (C) 2004 orx |
---|
5 | |
---|
6 | This program is free software; you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation; either version 2, or (at your option) |
---|
9 | any later version. |
---|
10 | |
---|
11 | ### File Specific: |
---|
12 | main-programmer: Benjamin Grauer |
---|
13 | co-programmer: ... |
---|
14 | |
---|
15 | */ |
---|
16 | |
---|
17 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_IMPORTER |
---|
18 | |
---|
19 | #include "material.h" |
---|
20 | |
---|
21 | #include "texture.h" |
---|
22 | #include "debug.h" |
---|
23 | #include "compiler.h" |
---|
24 | |
---|
25 | #include "loading/load_param.h" |
---|
26 | |
---|
27 | #include "util/loading/resource_manager.h" |
---|
28 | |
---|
29 | /** |
---|
30 | * @brief creates a Material. |
---|
31 | * @param mtlName Name of the Material to be added to the Material List |
---|
32 | */ |
---|
33 | Material::Material (const std::string& mtlName) |
---|
34 | { |
---|
35 | this->setClassID(CL_MATERIAL, "Material"); |
---|
36 | |
---|
37 | this->setIllum(3); |
---|
38 | this->setDiffuse(1,1,1); |
---|
39 | this->setAmbient(0,0,0); |
---|
40 | this->setSpecular(.5,.5,.5); |
---|
41 | this->setShininess(2.0); |
---|
42 | this->setTransparency(1.0); |
---|
43 | |
---|
44 | this->ambientTexture = NULL; |
---|
45 | this->specularTexture = NULL; |
---|
46 | this->sFactor = GL_SRC_ALPHA; |
---|
47 | this->tFactor = GL_ONE; |
---|
48 | |
---|
49 | this->setName(mtlName); |
---|
50 | } |
---|
51 | |
---|
52 | Material& Material::operator=(const Material& material) |
---|
53 | { |
---|
54 | this->illumModel = material.illumModel; |
---|
55 | this->diffuse = material.diffuse; |
---|
56 | this->specular = material.specular; |
---|
57 | this->ambient = material.ambient; |
---|
58 | this->shininess = material.shininess; |
---|
59 | |
---|
60 | this->textures = material.textures; |
---|
61 | this->sFactor = material.sFactor; |
---|
62 | this->tFactor = material.tFactor; |
---|
63 | this->setName(material.getName()); |
---|
64 | |
---|
65 | return *this; |
---|
66 | } |
---|
67 | |
---|
68 | |
---|
69 | |
---|
70 | void Material::loadParams(const TiXmlElement* root) |
---|
71 | { |
---|
72 | LoadParam(root, "illum", this, Material, setIllum); |
---|
73 | |
---|
74 | LoadParam(root, "diffuse-color", this, Material , setDiffuse); |
---|
75 | LoadParam(root, "ambient-color", this, Material , setAmbient); |
---|
76 | LoadParam(root, "specular-color", this, Material , setSpecular); |
---|
77 | LoadParam(root, "transparency", this, Material , setTransparency); |
---|
78 | |
---|
79 | LoadParam(root, "tex", this, Material, setDiffuseMap); |
---|
80 | LoadParam(root, "blendfunc", this, Material, setBlendFuncS) |
---|
81 | .defaultValues("ZERO", "ZERO"); |
---|
82 | } |
---|
83 | |
---|
84 | |
---|
85 | /** |
---|
86 | * @brief deletes a Material |
---|
87 | */ |
---|
88 | Material::~Material() |
---|
89 | { |
---|
90 | PRINTF(5)("delete Material %s.\n", this->getCName()); |
---|
91 | |
---|
92 | if (this->ambientTexture != NULL) |
---|
93 | ResourceManager::getInstance()->unload(this->ambientTexture); |
---|
94 | if (this->specularTexture != NULL) |
---|
95 | ResourceManager::getInstance()->unload(this->specularTexture); |
---|
96 | |
---|
97 | if (this == Material::selectedMaterial) |
---|
98 | Material::selectedMaterial = NULL; |
---|
99 | } |
---|
100 | |
---|
101 | |
---|
102 | const Material* Material::selectedMaterial = NULL; |
---|
103 | |
---|
104 | |
---|
105 | /// TODO FIX THIS |
---|
106 | // Material& Material::operator=(const Material& m) |
---|
107 | // { |
---|
108 | // this->setIllum(m.illumModel); |
---|
109 | // this->setDiffuse(m.diffuse[0],m.diffuse[1],m.diffuse[2]); |
---|
110 | // this->setAmbient(m.ambient[0],m.ambient[1],m.ambient[2]); |
---|
111 | // this->setSpecular(m.specular[0],m.specular[1],m.specular[2]); |
---|
112 | // this->setShininess(m.shininess); |
---|
113 | // this->setTransparency(m.transparency); |
---|
114 | // |
---|
115 | // if (this->diffuseTexture != NULL) |
---|
116 | // ResourceManager::getInstance()->unload(this->diffuseTexture); |
---|
117 | // if (m.diffuseTexture != NULL) |
---|
118 | // this->diffuseTexture = (Texture*)ResourceManager::getInstance()->copy(m.diffuseTexture); |
---|
119 | // this->ambientTexture = NULL; /// FIXME |
---|
120 | // this->specularTexture = NULL; /// FIXME |
---|
121 | // |
---|
122 | // this->setName(m.getName()); |
---|
123 | // } |
---|
124 | |
---|
125 | |
---|
126 | |
---|
127 | /** |
---|
128 | * @brief sets the material with which the following Faces will be painted |
---|
129 | */ |
---|
130 | bool Material::select() const |
---|
131 | { |
---|
132 | if (unlikely(this == Material::selectedMaterial)) |
---|
133 | return true; |
---|
134 | |
---|
135 | /// !! HACK !!! FIX THIS IN MODEL /// |
---|
136 | else if (likely(Material::selectedMaterial != NULL)) |
---|
137 | { |
---|
138 | Material::unselect(); |
---|
139 | // for(unsigned int i = 0; i < Material::selectedMaterial->textures.size(); ++i) |
---|
140 | // { |
---|
141 | // glActiveTexture(Material::glTextureArbs[i]); |
---|
142 | // glBindTexture(GL_TEXTURE_2D, 0); |
---|
143 | // glDisable(GL_TEXTURE_2D); |
---|
144 | // } |
---|
145 | } |
---|
146 | |
---|
147 | if (likely(Material::selectedMaterial != NULL)) |
---|
148 | { |
---|
149 | for(unsigned int i = 0; i < Material::selectedMaterial->textures.size(); ++i) |
---|
150 | { |
---|
151 | glActiveTexture(Material::glTextureArbs[i]); |
---|
152 | //glBindTexture(GL_TEXTURE_2D, 0); |
---|
153 | glDisable(GL_TEXTURE_2D); |
---|
154 | } |
---|
155 | } |
---|
156 | |
---|
157 | // setting diffuse color |
---|
158 | glColor4f (diffuse.r(), diffuse.g(), diffuse.b(), diffuse.a()); |
---|
159 | // setting ambient color |
---|
160 | glMaterialfv(GL_FRONT, GL_AMBIENT, &this->ambient[0]); |
---|
161 | // setting up Sprecular |
---|
162 | glMaterialfv(GL_FRONT, GL_SPECULAR, &this->specular[0]); |
---|
163 | // setting up Shininess |
---|
164 | glMaterialf(GL_FRONT, GL_SHININESS, this->shininess); |
---|
165 | |
---|
166 | // setting the transparency |
---|
167 | if (this->diffuse.a() < 1.0 || /* This allows alpha blending of 2D textures with the scene */ |
---|
168 | (likely(!this->textures.empty() && this->textures[0].hasAlpha()))) |
---|
169 | { |
---|
170 | glEnable(GL_BLEND); |
---|
171 | glBlendFunc(this->sFactor, this->tFactor); |
---|
172 | } |
---|
173 | else |
---|
174 | { |
---|
175 | glDisable(GL_BLEND); |
---|
176 | } |
---|
177 | |
---|
178 | |
---|
179 | // setting illumination Model |
---|
180 | if (this->illumModel == 1) //! @todo make this work, if no vertex-normals are read. |
---|
181 | glShadeModel(GL_FLAT); |
---|
182 | else if (this->illumModel >= 2) |
---|
183 | glShadeModel(GL_SMOOTH); |
---|
184 | |
---|
185 | for(unsigned int i = 0; i < this->textures.size(); ++i) |
---|
186 | { |
---|
187 | glActiveTexture(Material::glTextureArbs[i]); |
---|
188 | glEnable(GL_TEXTURE_2D); |
---|
189 | if(this->textures[i].hasAlpha()) |
---|
190 | { |
---|
191 | glEnable(GL_BLEND); |
---|
192 | } |
---|
193 | glBindTexture(GL_TEXTURE_2D, this->textures[i].getTexture()); |
---|
194 | } |
---|
195 | Material::selectedMaterial = this; |
---|
196 | |
---|
197 | return true; |
---|
198 | } |
---|
199 | /** |
---|
200 | * @brief Deselect Material (if one is selected). |
---|
201 | */ |
---|
202 | void Material::unselect() |
---|
203 | { |
---|
204 | Material::selectedMaterial = NULL; |
---|
205 | for(unsigned int i = 0; i < 8; ++i) |
---|
206 | { |
---|
207 | glActiveTexture(Material::glTextureArbs[i]); |
---|
208 | glBindTexture(GL_TEXTURE_2D, 0); |
---|
209 | glDisable(GL_TEXTURE_2D); |
---|
210 | } |
---|
211 | } |
---|
212 | |
---|
213 | /** |
---|
214 | * @brief Sets the Material Illumination Model. |
---|
215 | * @param illu illumination Model in int form |
---|
216 | */ |
---|
217 | void Material::setIllum (int illum) |
---|
218 | { |
---|
219 | PRINTF(4)("setting illumModel of Material %s to %i\n", this->getCName(), illum); |
---|
220 | this->illumModel = illum; |
---|
221 | } |
---|
222 | |
---|
223 | /** |
---|
224 | * @brief Sets the Material Diffuse Color. |
---|
225 | * @param r Red Color Channel.a |
---|
226 | * @param g Green Color Channel. |
---|
227 | * @param b Blue Color Channel. |
---|
228 | */ |
---|
229 | void Material::setDiffuse (float r, float g, float b) |
---|
230 | { |
---|
231 | PRINTF(4)("setting Diffuse Color of Material %s to r=%f g=%f b=%f.\n", this->getCName(), r, g, b); |
---|
232 | this->diffuse = Color(r, g, b, this->diffuse.a() ); |
---|
233 | } |
---|
234 | |
---|
235 | |
---|
236 | /** |
---|
237 | * @brief Sets the Material Ambient Color. |
---|
238 | * @param r Red Color Channel. |
---|
239 | * @param g Green Color Channel. |
---|
240 | * @param b Blue Color Channel. |
---|
241 | */ |
---|
242 | void Material::setAmbient (float r, float g, float b) |
---|
243 | { |
---|
244 | PRINTF(4)("setting Ambient Color of Material %s to r=%f g=%f b=%f.\n", this->getCName(), r, g, b); |
---|
245 | this->ambient = Color(r, g, b, 1.0); |
---|
246 | } |
---|
247 | |
---|
248 | /** |
---|
249 | * @brief Sets the Material Specular Color. |
---|
250 | * @param r Red Color Channel. |
---|
251 | * @param g Green Color Channel. |
---|
252 | * @param b Blue Color Channel. |
---|
253 | */ |
---|
254 | void Material::setSpecular (float r, float g, float b) |
---|
255 | { |
---|
256 | PRINTF(4)("setting Specular Color of Material %s to r=%f g=%f b=%f.\n", this->getCName(), r, g, b); |
---|
257 | this->specular = Color (r, g, b, 1.0); |
---|
258 | } |
---|
259 | |
---|
260 | /** |
---|
261 | * @brief Sets the Material Shininess. |
---|
262 | * @param shini stes the Shininess from float. |
---|
263 | */ |
---|
264 | void Material::setShininess (float shini) |
---|
265 | { |
---|
266 | this->shininess = shini; |
---|
267 | } |
---|
268 | |
---|
269 | /** |
---|
270 | * @brief Sets the Material Transparency. |
---|
271 | * @param trans stes the Transparency from int. |
---|
272 | */ |
---|
273 | void Material::setTransparency (float trans) |
---|
274 | { |
---|
275 | PRINTF(4)("setting Transparency of Material %s to %f.\n", this->getCName(), trans); |
---|
276 | this->diffuse.a() = trans; |
---|
277 | } |
---|
278 | |
---|
279 | /** |
---|
280 | * @brief sets the Blend-Function Parameters |
---|
281 | * @param sFactor the Source Parameter. |
---|
282 | * @param tFactor the Desitnation Parameter. |
---|
283 | */ |
---|
284 | void Material::setBlendFuncS(const std::string& sFactor, const std::string& tFactor) |
---|
285 | { |
---|
286 | this->setBlendFunc(Material::stringToBlendFunc(sFactor), Material::stringToBlendFunc(tFactor)); |
---|
287 | } |
---|
288 | |
---|
289 | |
---|
290 | |
---|
291 | /** |
---|
292 | * @brief Adds a Texture Path to the List of already existing Paths |
---|
293 | * @param pathName The Path to add. |
---|
294 | */ |
---|
295 | void Material::addTexturePath(const std::string& pathName) |
---|
296 | { |
---|
297 | ResourceManager::getInstance()->addImageDir(pathName); |
---|
298 | } |
---|
299 | |
---|
300 | // MAPPING // |
---|
301 | |
---|
302 | |
---|
303 | /** |
---|
304 | * @brief Sets the Diffuse map of this Texture. |
---|
305 | * @param texture The Texture to load |
---|
306 | * @param textureNumber The Texture-Number from 0 to GL_MAX_TEXTURE_UNITS |
---|
307 | */ |
---|
308 | void Material::setDiffuseMap(const Texture& texture, unsigned int textureNumber) |
---|
309 | { |
---|
310 | assert(textureNumber < Material::getMaxTextureUnits()); |
---|
311 | |
---|
312 | if (this->textures.size() <= textureNumber) |
---|
313 | this->textures.resize(textureNumber+1, Texture()); |
---|
314 | |
---|
315 | //! @todo check if RESOURCE MANAGER is availiable |
---|
316 | this->textures[textureNumber] = texture; |
---|
317 | } |
---|
318 | |
---|
319 | /** |
---|
320 | * @brief Sets the Diffuse map of this Texture by a Texture-pointer. |
---|
321 | * @param textureDataPointer The Texture-Data-Pointer to load. |
---|
322 | * @param textureNumber The Texture-Number from 0 to GL_MAX_TEXTURE_UNITS |
---|
323 | */ |
---|
324 | void Material::setDiffuseMap(const TextureDataPointer& textureDataPointer, unsigned int textureNumber) |
---|
325 | { |
---|
326 | assert(textureNumber < Material::getMaxTextureUnits()); |
---|
327 | |
---|
328 | if (this->textures.size() <= textureNumber) |
---|
329 | this->textures.resize(textureNumber+1, Texture()); |
---|
330 | |
---|
331 | this->textures[textureNumber] = textureDataPointer; |
---|
332 | } |
---|
333 | |
---|
334 | |
---|
335 | /** |
---|
336 | * @brief Sets the Materials Diffuse Map |
---|
337 | * @param dMap the Name of the Image to Use |
---|
338 | * @param textureNumber The Texture-Number from 0 to GL_MAX_TEXTURE_UNITS |
---|
339 | */ |
---|
340 | void Material::setDiffuseMap(const std::string& dMap, GLenum target, unsigned int textureNumber) |
---|
341 | { |
---|
342 | assert(textureNumber < Material::getMaxTextureUnits()); |
---|
343 | |
---|
344 | PRINTF(5)("setting Diffuse Map %s\n", dMap.c_str()); |
---|
345 | if (this->textures.size() <= textureNumber) |
---|
346 | this->textures.resize(textureNumber+1, Texture()); |
---|
347 | |
---|
348 | //! @todo check if RESOURCE MANAGER is availiable |
---|
349 | if (!dMap.empty()) |
---|
350 | { |
---|
351 | Texture* tex = dynamic_cast<Texture*>(ResourceManager::getInstance()->load(dMap, IMAGE, RP_GAME, (int)target)); |
---|
352 | if (tex != NULL) |
---|
353 | this->textures[textureNumber] = *tex; |
---|
354 | else |
---|
355 | this->textures[textureNumber] = Texture(); |
---|
356 | } |
---|
357 | else |
---|
358 | { |
---|
359 | this->textures[textureNumber] = Texture(); |
---|
360 | } |
---|
361 | } |
---|
362 | |
---|
363 | /** |
---|
364 | * @brief Sets the Materials Diffuse Map |
---|
365 | * @param surface pointer to SDL_Surface which shall be used as texture. |
---|
366 | * @param target the GL-Target to load the Surface to. |
---|
367 | * @param textureNumber The Texture-Number from 0 to GL_MAX_TEXTURE_UNITS. |
---|
368 | */ |
---|
369 | void Material::setSDLDiffuseMap(SDL_Surface *surface, GLenum target, unsigned int textureNumber) |
---|
370 | { |
---|
371 | assert(textureNumber < Material::getMaxTextureUnits()); |
---|
372 | |
---|
373 | |
---|
374 | if (this->textures.size() <= textureNumber) |
---|
375 | this->textures.resize(textureNumber+1, Texture()); |
---|
376 | |
---|
377 | if(surface != NULL) |
---|
378 | { |
---|
379 | this->textures[textureNumber] = Texture(surface, GL_TEXTURE_2D); |
---|
380 | } |
---|
381 | else |
---|
382 | { |
---|
383 | this->textures[textureNumber] = Texture(); |
---|
384 | } |
---|
385 | |
---|
386 | } |
---|
387 | |
---|
388 | /** |
---|
389 | * @brief Renders to a Texture. |
---|
390 | * @param textureNumber The Texture-Number from 0 to GL_MAX_TEXTURE_UNITS. |
---|
391 | * @param target The GL-Target. |
---|
392 | * @param level the MipMap-Level to render to. |
---|
393 | * @param xoffset The offset in the Source from the left. |
---|
394 | * @param yoffset The offset in the Source from the top (or bottom). |
---|
395 | * @param x The Offset in the Destination from the left. |
---|
396 | * @param y The Offset in the Destination from the top (or bottom). |
---|
397 | * @param width The width of the region to copy. |
---|
398 | * @param height The height of the region to copy. |
---|
399 | */ |
---|
400 | void Material::renderToTexture(unsigned int textureNumber, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) |
---|
401 | { |
---|
402 | assert(textureNumber < Material::getMaxTextureUnits()); |
---|
403 | assert(textureNumber < this->textures.size()); |
---|
404 | |
---|
405 | // HACK |
---|
406 | glActiveTexture(textureNumber); |
---|
407 | glEnable(GL_TEXTURE_2D); |
---|
408 | glBindTexture(GL_TEXTURE_2D, this->textures[textureNumber].getTexture()); |
---|
409 | glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height); |
---|
410 | |
---|
411 | } |
---|
412 | |
---|
413 | /** |
---|
414 | * @brief Sets the Materials Ambient Map |
---|
415 | * @todo implement this |
---|
416 | */ |
---|
417 | void Material::setAmbientMap(const std::string& aMap, GLenum target) |
---|
418 | { |
---|
419 | /// FIXME SDL_Surface* ambientMap; |
---|
420 | |
---|
421 | } |
---|
422 | |
---|
423 | /** |
---|
424 | * @brief Sets the Materials Specular Map |
---|
425 | * @param sMap the Name of the Image to Use |
---|
426 | * @todo implement this |
---|
427 | */ |
---|
428 | void Material::setSpecularMap(const std::string& sMap, GLenum target) |
---|
429 | { |
---|
430 | /// FIXME SDL_Surface* specularMap; |
---|
431 | |
---|
432 | } |
---|
433 | |
---|
434 | /** |
---|
435 | * @brief Sets the Materials Bumpiness |
---|
436 | * @param bump the Name of the Image to Use |
---|
437 | * @todo implemet this |
---|
438 | */ |
---|
439 | void Material::setBump(const std::string& bump) |
---|
440 | {} |
---|
441 | |
---|
442 | |
---|
443 | /** |
---|
444 | * @returns the Maximim Texture Unit the users OpenGL-Implementation supports. |
---|
445 | */ |
---|
446 | unsigned int Material::getMaxTextureUnits() |
---|
447 | { |
---|
448 | int maxTexUnits = 0; |
---|
449 | glGetIntegerv(GL_MAX_TEXTURE_UNITS, &maxTexUnits); |
---|
450 | return maxTexUnits; |
---|
451 | } |
---|
452 | |
---|
453 | |
---|
454 | |
---|
455 | void Material::debug() const |
---|
456 | { |
---|
457 | PRINT(0)("Debug Material: %s\n", this->getCName()); |
---|
458 | PRINT(0)("illumModel: %d ; ShiniNess %f\n", this->illumModel, shininess); |
---|
459 | PRINT(0)("diffuseColor: "); diffuse.debug(); |
---|
460 | PRINT(0)("ambientColor: "); ambient.debug(); |
---|
461 | PRINT(0)("diffuseColor: "); specular.debug(); |
---|
462 | PRINT(0)("Blending Properties: Source: %s, Destination: %s\n", blendFuncToString(sFactor).c_str(), blendFuncToString(tFactor).c_str()); |
---|
463 | |
---|
464 | PRINT(0)("Textures: %d loaded", textures.size()); |
---|
465 | if (!this->textures.empty()) |
---|
466 | { |
---|
467 | PRINT(0)(" - ID's: "); |
---|
468 | for (unsigned int i = 0; i < textures.size(); ++i) |
---|
469 | { |
---|
470 | PRINT(0)("%d ", textures[i].getTexture()); |
---|
471 | } |
---|
472 | } |
---|
473 | PRINT(0)("\n"); |
---|
474 | } |
---|
475 | |
---|
476 | |
---|
477 | const GLenum Material::glTextureArbs[] = |
---|
478 | { |
---|
479 | GL_TEXTURE0, |
---|
480 | GL_TEXTURE1, |
---|
481 | GL_TEXTURE2, |
---|
482 | GL_TEXTURE3, |
---|
483 | GL_TEXTURE4, |
---|
484 | GL_TEXTURE5, |
---|
485 | GL_TEXTURE6, |
---|
486 | GL_TEXTURE7 |
---|
487 | }; |
---|
488 | |
---|
489 | |
---|
490 | /** |
---|
491 | * @param blendFunc the Enumerator to convert to a String. |
---|
492 | * @returns the matching String if found |
---|
493 | */ |
---|
494 | const std::string& Material::blendFuncToString(GLenum blendFunc) |
---|
495 | { |
---|
496 | for (unsigned int i = 0; i < 9; ++i) |
---|
497 | if (blendFunc == Material::glBlendFuncParams[i]) |
---|
498 | return Material::blendFuncNames[i]; |
---|
499 | PRINTF(2)("Supplied an Invalid Enumerator to blendfunc %d\n", blendFunc); |
---|
500 | return Material::blendFuncNames[0]; |
---|
501 | } |
---|
502 | |
---|
503 | /** |
---|
504 | * @param blendFuncString the String to convert into a gl-enumeration |
---|
505 | * @returns the matching GL-enumeration if found. |
---|
506 | */ |
---|
507 | GLenum Material::stringToBlendFunc(const std::string& blendFuncString) |
---|
508 | { |
---|
509 | for (unsigned int i = 0; i < 9; ++i) |
---|
510 | if (blendFuncString == Material::blendFuncNames[i]) |
---|
511 | return Material::glBlendFuncParams[i]; |
---|
512 | PRINTF(2)("BlendFunction %s not recognized using %s\n", blendFuncString.c_str(), Material::blendFuncNames[0].c_str()); |
---|
513 | return Material::glBlendFuncParams[0]; |
---|
514 | } |
---|
515 | |
---|
516 | |
---|
517 | const GLenum Material::glBlendFuncParams[] = |
---|
518 | { |
---|
519 | GL_ZERO, |
---|
520 | GL_ONE, |
---|
521 | GL_DST_COLOR, |
---|
522 | GL_ONE_MINUS_DST_COLOR, |
---|
523 | GL_SRC_ALPHA, |
---|
524 | GL_ONE_MINUS_SRC_ALPHA, |
---|
525 | GL_DST_ALPHA, |
---|
526 | GL_ONE_MINUS_DST_ALPHA, |
---|
527 | GL_SRC_ALPHA_SATURATE |
---|
528 | }; |
---|
529 | |
---|
530 | const std::string Material::blendFuncNames[] = |
---|
531 | { |
---|
532 | "ZERO", |
---|
533 | "ONE", |
---|
534 | "DST_COLOR", |
---|
535 | "ONE_MINUS_DST_COLOR", |
---|
536 | "SRC_ALPHA", |
---|
537 | "ONE_MINUS_SRC_ALPHA", |
---|
538 | "DST_ALPHA", |
---|
539 | "ONE_MINUS_DST_ALPHA", |
---|
540 | "SRC_ALPHA_SATURATE" |
---|
541 | |
---|
542 | }; |
---|