| 122 | |
| 123 | |
| 124 | void CustomTextureMatrix::writeToManager() const { |
| 125 | texmat->setName(name); |
| 126 | if ((name.size() > 0) && (TEXMATRIXMGR.findMatrix(name) >= 0)) { |
| 127 | std::cout << "WARNING: duplicate texture matrix" |
| 128 | << " (" << name << ")" << std::endl; |
| 129 | } |
| 130 | texmat->finalize(); |
| 131 | TEXMATRIXMGR.addMatrix(texmat); |
| 132 | texmat = NULL; |
| 133 | return; |
| 134 | } |
| 135 | |
| 136 | |
| 137 | // Local Variables: *** |
nothing calls this directly
no test coverage detected