| 66 | } |
| 67 | |
| 68 | void vkRenderer::initWindow() { |
| 69 | glfwInit(); |
| 70 | |
| 71 | glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API); |
| 72 | |
| 73 | window = glfwCreateWindow(WIDTH, HEIGHT, "vkNFS3", nullptr, nullptr); |
| 74 | } |
| 75 | |
| 76 | void vkRenderer::initVulkan() { |
| 77 | createInstance(); |
nothing calls this directly
no outgoing calls
no test coverage detected