Lines Matching defs:handle
57 _glfw.vk.handle = _glfwPlatformLoadModule(_GLFW_VULKAN_LIBRARY);
59 _glfw.vk.handle = _glfwPlatformLoadModule("vulkan-1.dll");
61 _glfw.vk.handle = _glfwPlatformLoadModule("libvulkan.1.dylib");
62 if (!_glfw.vk.handle)
63 _glfw.vk.handle = _glfwLoadLocalVulkanLoaderCocoa();
65 _glfw.vk.handle = _glfwPlatformLoadModule("libvulkan.so");
67 _glfw.vk.handle = _glfwPlatformLoadModule("libvulkan.so.1");
69 if (!_glfw.vk.handle)
78 _glfwPlatformGetModuleSymbol(_glfw.vk.handle, "vkGetInstanceProcAddr");
160 if (_glfw.vk.handle)
161 _glfwPlatformFreeModule(_glfw.vk.handle);
266 if (_glfw.vk.handle)
267 proc = (GLFWvkproc) _glfwPlatformGetModuleSymbol(_glfw.vk.handle, procname);
298 GLFWwindow* handle,
308 _GLFWwindow* window = (_GLFWwindow*) handle;