| 538 | } |
| 539 | |
| 540 | const char* SamplerFilterModeString(int mode) |
| 541 | { |
| 542 | switch (mode) { |
| 543 | case 0: return "Nearest"; |
| 544 | case 1: return "Linear"; |
| 545 | |
| 546 | default: return "Bad"; |
| 547 | } |
| 548 | } |
| 549 | |
| 550 | const char* ImageFormatString(int format) |
| 551 | { |
nothing calls this directly
no outgoing calls
no test coverage detected