| 236 | } |
| 237 | |
| 238 | static void NRI_CALL DestroyQueryPool(QueryPool& queryPool) { |
| 239 | if (!(&queryPool)) |
| 240 | return; |
| 241 | |
| 242 | GetDeviceVal(queryPool).DestroyQueryPool(queryPool); |
| 243 | } |
| 244 | |
| 245 | static void NRI_CALL DestroyFence(Fence& fence) { |
| 246 | if (!(&fence)) |
nothing calls this directly
no test coverage detected