| 37 | } |
| 38 | |
| 39 | const char* RuntimeToString(Runtime rt) |
| 40 | { |
| 41 | switch (rt) { |
| 42 | case Runtime::DXGI: return "DXGI"; |
| 43 | case Runtime::D3D9: return "D3D9"; |
| 44 | default: return "Other"; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | // If frame type debug is necessary uncomment |
| 49 | // the following line. If we want to have |
no outgoing calls
no test coverage detected