| 78 | } |
| 79 | |
| 80 | bool NativeInit(const ContextParams& params) |
| 81 | { |
| 82 | #if ANDROID |
| 83 | if (!LoadVulkanLibrary()) |
| 84 | { |
| 85 | dmLogError("Could not load Vulkan functions."); |
| 86 | return false; |
| 87 | } |
| 88 | #endif |
| 89 | return true; |
| 90 | } |
| 91 | |
| 92 | void NativeExit() |
| 93 | { |
no test coverage detected