| 130 | } |
| 131 | |
| 132 | const char* MemoryString(int mem) |
| 133 | { |
| 134 | switch (mem) { |
| 135 | case (int)MemoryModel::Simple: return "Simple"; |
| 136 | case (int)MemoryModel::GLSL450: return "GLSL450"; |
| 137 | case (int)MemoryModel::OpenCL: return "OpenCL"; |
| 138 | case (int)MemoryModel::VulkanKHR: return "VulkanKHR"; |
| 139 | |
| 140 | default: return "Bad"; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | const int ExecutionModeCeiling = 40; |
| 145 |
nothing calls this directly
no outgoing calls
no test coverage detected