| 281 | } |
| 282 | |
| 283 | const char* getName(TextureFormat::Enum _format) |
| 284 | { |
| 285 | if (_format >= TextureFormat::Count) |
| 286 | { |
| 287 | return "Unknown?!"; |
| 288 | } |
| 289 | |
| 290 | return s_textureFormatName[_format]; |
| 291 | } |
| 292 | |
| 293 | TextureFormat::Enum getFormat(const char* _name) |
| 294 | { |
no outgoing calls
no test coverage detected