| 1298 | #endif |
| 1299 | #if defined(VK_USE_PLATFORM_XLIB_KHR) |
| 1300 | const char *Demo::init_xlib_connection() { |
| 1301 | xlib_library = initialize_xlib(); |
| 1302 | if (NULL == xlib_library) { |
| 1303 | return "Cannot load XLIB dynamic library."; |
| 1304 | } |
| 1305 | return NULL; |
| 1306 | } |
| 1307 | #endif |
| 1308 | #if defined(VK_USE_PLATFORM_WAYLAND_KHR) |
| 1309 | const char *Demo::init_wayland_connection() { |
nothing calls this directly
no test coverage detected