| 194 | } |
| 195 | |
| 196 | static void NRI_CALL DestroyDescriptorPool(DescriptorPool& descriptorPool) { |
| 197 | if (!(&descriptorPool)) |
| 198 | return; |
| 199 | |
| 200 | GetDeviceVal(descriptorPool).DestroyDescriptorPool(descriptorPool); |
| 201 | } |
| 202 | |
| 203 | static void NRI_CALL DestroyBuffer(Buffer& buffer) { |
| 204 | if (!(&buffer)) |
nothing calls this directly
no test coverage detected