2021-03-27 11:09:37 +00:00
|
|
|
/*
|
|
|
|
vid_win.c
|
|
|
|
|
|
|
|
Win32 vid component
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "winquake.h"
|
2021-03-29 03:03:07 +00:00
|
|
|
#define VK_NO_PROTOTYPES
|
|
|
|
#define VK_USE_PLATFORM_WIN32_KHR
|
|
|
|
#include <vulkan/vulkan.h>
|
2021-03-27 11:09:37 +00:00
|
|
|
|
|
|
|
#include "QF/cvar.h"
|
|
|
|
#include "QF/set.h"
|
|
|
|
#include "QF/sys.h"
|
|
|
|
#include "QF/va.h"
|
|
|
|
|
|
|
|
#include "QF/Vulkan/instance.h"
|
|
|
|
|
|
|
|
#include "context_win.h"
|
|
|
|
#include "vid_internal.h"
|
|
|
|
#include "vid_vulkan.h"
|
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
static char *vulkan_library_name;
|
|
|
|
static cvar_t vulkan_library_name_cvar = {
|
|
|
|
.name = "vulkan_library",
|
|
|
|
.description =
|
|
|
|
"the name of the vulkan shared library",
|
|
|
|
.default_value = "vulkan-1.dll",
|
|
|
|
.flags = CVAR_ROM,
|
|
|
|
.value = { .type = 0, .value = &vulkan_library_name },
|
|
|
|
};
|
2021-03-27 11:09:37 +00:00
|
|
|
|
|
|
|
typedef struct vulkan_presentation_s {
|
|
|
|
#define PRESENTATION_VULKAN_FUNCTION_FROM_EXTENSION(name,ext) PFN_##name name;
|
|
|
|
#include "QF/Vulkan/funclist.h"
|
|
|
|
|
2021-03-29 03:03:07 +00:00
|
|
|
HINSTANCE instance;
|
|
|
|
HWND window;
|
|
|
|
|
2021-03-27 11:09:37 +00:00
|
|
|
} vulkan_presentation_t;
|
|
|
|
|
|
|
|
static const char *required_extensions[] = {
|
2021-03-29 03:03:07 +00:00
|
|
|
VK_KHR_WIN32_SURFACE_EXTENSION_NAME,
|
2021-03-27 11:09:37 +00:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
static HMODULE vulkan_library;
|
|
|
|
|
|
|
|
static void
|
|
|
|
load_vulkan_library (vulkan_ctx_t *ctx)
|
|
|
|
{
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
vulkan_library = LoadLibrary (vulkan_library_name);
|
2021-03-27 11:09:37 +00:00
|
|
|
if (!vulkan_library) {
|
|
|
|
DWORD errcode = GetLastError ();
|
|
|
|
Sys_Error ("Couldn't load vulkan library %s: %ld",
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
vulkan_library_name, errcode);
|
2021-03-27 11:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define EXPORTED_VULKAN_FUNCTION(name) \
|
|
|
|
ctx->name = (PFN_##name) GetProcAddress (vulkan_library, #name); \
|
|
|
|
if (!ctx->name) { \
|
|
|
|
Sys_Error ("Couldn't find exported vulkan function %s", #name); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GLOBAL_LEVEL_VULKAN_FUNCTION(name) \
|
|
|
|
ctx->name = (PFN_##name) ctx->vkGetInstanceProcAddr (0, #name); \
|
|
|
|
if (!ctx->name) { \
|
|
|
|
Sys_Error ("Couldn't find global-level function %s", #name); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "QF/Vulkan/funclist.h"
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unload_vulkan_library (vulkan_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
FreeLibrary (vulkan_library);
|
|
|
|
vulkan_library = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
win_vulkan_init_presentation (vulkan_ctx_t *ctx)
|
|
|
|
{
|
2021-03-29 03:03:07 +00:00
|
|
|
ctx->presentation = calloc (1, sizeof (vulkan_presentation_t));
|
|
|
|
vulkan_presentation_t *pres = ctx->presentation;
|
|
|
|
qfv_instance_t *instance = ctx->instance;
|
|
|
|
VkInstance inst = instance->instance;
|
|
|
|
|
|
|
|
#define PRESENTATION_VULKAN_FUNCTION_FROM_EXTENSION(name, ext) \
|
|
|
|
if (instance->extension_enabled (instance, ext)) { \
|
|
|
|
pres->name = (PFN_##name) ctx->vkGetInstanceProcAddr (inst, #name); \
|
|
|
|
if (!pres->name) { \
|
|
|
|
Sys_Error ("Couldn't find instance-level function %s", #name); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
#include "QF/Vulkan/funclist.h"
|
|
|
|
|
|
|
|
pres->instance = GetModuleHandle (0);
|
2021-03-27 11:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
win_vulkan_get_presentation_support (vulkan_ctx_t *ctx,
|
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
uint32_t queueFamilyIndex)
|
|
|
|
{
|
|
|
|
if (!ctx->presentation) {
|
|
|
|
win_vulkan_init_presentation (ctx);
|
|
|
|
}
|
|
|
|
vulkan_presentation_t *pres = ctx->presentation;
|
2021-03-29 03:03:07 +00:00
|
|
|
if (pres->vkGetPhysicalDeviceWin32PresentationSupportKHR (
|
|
|
|
physicalDevice, queueFamilyIndex)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2021-03-27 11:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
win_vulkan_choose_visual (vulkan_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
win_vulkan_create_window (vulkan_ctx_t *ctx)
|
|
|
|
{
|
2021-03-29 03:03:07 +00:00
|
|
|
vulkan_presentation_t *pres = ctx->presentation;
|
|
|
|
pres->window = win_mainwindow;
|
2021-03-27 11:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static VkSurfaceKHR
|
|
|
|
win_vulkan_create_surface (vulkan_ctx_t *ctx)
|
|
|
|
{
|
2021-03-29 03:03:07 +00:00
|
|
|
vulkan_presentation_t *pres = ctx->presentation;
|
|
|
|
VkInstance inst = ctx->instance->instance;
|
|
|
|
VkSurfaceKHR surface;
|
|
|
|
VkWin32SurfaceCreateInfoKHR createInfo = {
|
|
|
|
.sType = VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR,
|
|
|
|
.flags = 0,
|
|
|
|
.hinstance = pres->instance,
|
|
|
|
.hwnd = pres->window,
|
|
|
|
};
|
2021-03-31 14:38:49 +00:00
|
|
|
|
2022-04-06 09:36:07 +00:00
|
|
|
ctx->window_width = viddef.width;
|
|
|
|
ctx->window_height = viddef.height;
|
2021-03-31 14:38:49 +00:00
|
|
|
|
2021-03-29 03:03:07 +00:00
|
|
|
if (pres->vkCreateWin32SurfaceKHR (inst, &createInfo, 0, &surface)
|
|
|
|
!= VK_SUCCESS) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return surface;
|
2021-03-27 11:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vulkan_ctx_t *
|
|
|
|
Win_Vulkan_Context (void)
|
|
|
|
{
|
|
|
|
vulkan_ctx_t *ctx = calloc (1, sizeof (vulkan_ctx_t));
|
|
|
|
ctx->load_vulkan = load_vulkan_library;
|
|
|
|
ctx->unload_vulkan = unload_vulkan_library;
|
|
|
|
ctx->get_presentation_support = win_vulkan_get_presentation_support;
|
|
|
|
ctx->choose_visual = win_vulkan_choose_visual;
|
|
|
|
ctx->create_window = win_vulkan_create_window;
|
|
|
|
ctx->create_surface = win_vulkan_create_surface;
|
|
|
|
ctx->required_extensions = required_extensions;
|
|
|
|
ctx->va_ctx = va_create_context (4);
|
2022-11-13 13:23:56 +00:00
|
|
|
ctx->twod_scale = 1;
|
2021-03-27 11:09:37 +00:00
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Win_Vulkan_Init_Cvars (void)
|
|
|
|
{
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
Cvar_Register (&vulkan_library_name_cvar, 0, 0);
|
2021-03-27 11:09:37 +00:00
|
|
|
}
|