| 5251 | } |
| 5252 | |
| 5253 | IGFD_C_API void SetDestroyThumbnailCallback(ImGuiFileDialog* vContextPtr, const IGFD_DestroyThumbnailFun vDestroyThumbnailFun) { |
| 5254 | if (vContextPtr != nullptr) { |
| 5255 | vContextPtr->SetDestroyThumbnailCallback(vDestroyThumbnailFun); |
| 5256 | } |
| 5257 | } |
| 5258 | |
| 5259 | IGFD_C_API void ManageGPUThumbnails(ImGuiFileDialog* vContextPtr) { |
| 5260 | if (vContextPtr != nullptr) { |
nothing calls this directly
no test coverage detected