Fix a compile error

not sure how that one got through
This commit is contained in:
Bill Currie 2019-10-16 20:57:39 +09:00
parent 4957c4f31a
commit 8819d26c95
1 changed files with 3 additions and 2 deletions

View File

@ -152,7 +152,8 @@ vulkan_vid_render_choose_visual (void)
{
Vulkan_CreateDevice (vulkan_ctx);
vulkan_ctx->choose_visual (vulkan_ctx);
Sys_Printf ("%p %p\n", vulkan_ctx->device->dev, vulkan_ctx->device->queue);
Sys_Printf ("vk choose visual %p %p\n", vulkan_ctx->device->dev,
vulkan_ctx->device->queue.queue);
}
static void
@ -160,7 +161,7 @@ vulkan_vid_render_create_context (void)
{
vulkan_ctx->create_window (vulkan_ctx);
vulkan_ctx->surface = vulkan_ctx->create_surface (vulkan_ctx);
Sys_Printf ("%p\n", vulkan_ctx->surface);
Sys_Printf ("vk create context %p\n", vulkan_ctx->surface);
Vulkan_CreateSwapchain (vulkan_ctx);
Sys_Printf ("%p %d", vulkan_ctx->swapchain->swapchain,
vulkan_ctx->swapchain->numImages);