| 186 | } |
| 187 | |
| 188 | RenderBatchInfo* ExportRenderManager::getBatchInfo(size_t _index) const |
| 189 | { |
| 190 | if (_index < mBatchInfo.size()) |
| 191 | return &mBatchInfo[_index]; |
| 192 | return nullptr; |
| 193 | } |
| 194 | |
| 195 | void ExportRenderManager::addTexture(const std::string& _name, size_t _id, int _width, int _height) |
| 196 | { |
no test coverage detected