2020-12-23 05:32:29 +00:00
|
|
|
/*
|
|
|
|
shader.c
|
|
|
|
|
|
|
|
Vulkan shader manager
|
|
|
|
|
|
|
|
Copyright (C) 2020 Bill Currie <bill@taniwha.org>
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
#ifdef HAVE_MATH_H
|
|
|
|
# include <math.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "QF/alloc.h"
|
|
|
|
#include "QF/cvar.h"
|
|
|
|
#include "QF/dstring.h"
|
|
|
|
#include "QF/hash.h"
|
|
|
|
#include "QF/quakefs.h"
|
|
|
|
#include "QF/sys.h"
|
|
|
|
#include "QF/Vulkan/qf_vid.h"
|
2021-04-19 08:49:03 +00:00
|
|
|
#include "QF/Vulkan/debug.h"
|
2020-12-23 05:32:29 +00:00
|
|
|
#include "QF/Vulkan/device.h"
|
|
|
|
#include "QF/Vulkan/image.h"
|
|
|
|
#include "QF/Vulkan/instance.h"
|
|
|
|
#include "QF/Vulkan/renderpass.h"
|
|
|
|
#include "QF/Vulkan/shader.h"
|
|
|
|
|
|
|
|
#include "vid_vulkan.h"
|
|
|
|
|
2021-01-10 06:52:27 +00:00
|
|
|
static
|
2021-02-10 08:43:11 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/twod.vert.spvc"
|
2021-01-10 06:52:27 +00:00
|
|
|
static
|
2021-02-10 08:43:11 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/twod.frag.spvc"
|
2020-12-23 05:32:29 +00:00
|
|
|
static
|
2021-02-10 08:43:11 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/quakebsp.vert.spvc"
|
2021-01-18 08:13:52 +00:00
|
|
|
static
|
2021-02-10 08:43:11 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/quakebsp.frag.spvc"
|
2021-01-18 08:13:52 +00:00
|
|
|
static
|
2021-02-19 02:14:54 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/bsp_depth.vert.spvc"
|
|
|
|
static
|
|
|
|
#include "libs/video/renderer/vulkan/shader/bsp_gbuf.vert.spvc"
|
|
|
|
static
|
|
|
|
#include "libs/video/renderer/vulkan/shader/bsp_gbuf.geom.spvc"
|
|
|
|
static
|
|
|
|
#include "libs/video/renderer/vulkan/shader/bsp_gbuf.frag.spvc"
|
|
|
|
static
|
2021-04-24 01:40:39 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/bsp_shadow.vert.spvc"
|
|
|
|
static
|
2021-02-23 06:43:02 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/bsp_sky.frag.spvc"
|
|
|
|
static
|
2021-03-23 03:24:24 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/bsp_turb.frag.spvc"
|
|
|
|
static
|
2021-02-24 10:58:31 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/lighting.frag.spvc"
|
|
|
|
static
|
|
|
|
#include "libs/video/renderer/vulkan/shader/compose.frag.spvc"
|
|
|
|
static
|
2021-02-10 08:43:11 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/alias.vert.spvc"
|
2021-01-25 15:55:45 +00:00
|
|
|
static
|
2021-02-17 04:35:19 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/alias_depth.vert.spvc"
|
|
|
|
static
|
2021-02-10 08:43:11 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/alias.frag.spvc"
|
2021-01-25 15:55:45 +00:00
|
|
|
static
|
2021-02-17 04:35:19 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/alias_gbuf.frag.spvc"
|
|
|
|
static
|
2021-04-24 01:40:39 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/alias_shadow.vert.spvc"
|
|
|
|
static
|
2021-02-10 08:43:11 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/passthrough.vert.spvc"
|
2020-12-23 05:32:29 +00:00
|
|
|
static
|
2021-02-10 08:43:11 +00:00
|
|
|
#include "libs/video/renderer/vulkan/shader/pushcolor.frag.spvc"
|
2021-04-24 01:40:39 +00:00
|
|
|
static
|
|
|
|
#include "libs/video/renderer/vulkan/shader/shadow.geom.spvc"
|
2020-12-23 05:32:29 +00:00
|
|
|
|
|
|
|
typedef struct shaderdata_s {
|
|
|
|
const char *name;
|
|
|
|
const uint32_t *data;
|
|
|
|
size_t size;
|
|
|
|
} shaderdata_t;
|
|
|
|
|
|
|
|
static shaderdata_t builtin_shaders[] = {
|
2021-01-10 06:52:27 +00:00
|
|
|
{ "twod.vert", twod_vert, sizeof (twod_vert) },
|
|
|
|
{ "twod.frag", twod_frag, sizeof (twod_frag) },
|
2021-01-18 08:13:52 +00:00
|
|
|
{ "quakebsp.vert", quakebsp_vert, sizeof (quakebsp_vert) },
|
|
|
|
{ "quakebsp.frag", quakebsp_frag, sizeof (quakebsp_frag) },
|
2021-02-19 02:14:54 +00:00
|
|
|
{ "bsp_depth.vert", bsp_depth_vert, sizeof (bsp_depth_vert) },
|
|
|
|
{ "bsp_gbuf.vert", bsp_gbuf_vert, sizeof (bsp_gbuf_vert) },
|
|
|
|
{ "bsp_gbuf.geom", bsp_gbuf_geom, sizeof (bsp_gbuf_geom) },
|
|
|
|
{ "bsp_gbuf.frag", bsp_gbuf_frag, sizeof (bsp_gbuf_frag) },
|
2021-04-24 01:40:39 +00:00
|
|
|
{ "bsp_shadow.vert", bsp_shadow_vert, sizeof (bsp_shadow_vert) },
|
2021-02-23 06:43:02 +00:00
|
|
|
{ "bsp_sky.frag", bsp_sky_frag, sizeof (bsp_sky_frag) },
|
2021-03-23 03:24:24 +00:00
|
|
|
{ "bsp_turb.frag", bsp_turb_frag, sizeof (bsp_turb_frag) },
|
2021-02-24 10:58:31 +00:00
|
|
|
{ "lighting.frag", lighting_frag, sizeof (lighting_frag) },
|
|
|
|
{ "compose.frag", compose_frag, sizeof (compose_frag) },
|
2021-01-25 15:55:45 +00:00
|
|
|
{ "alias.vert", alias_vert, sizeof (alias_vert) },
|
2021-02-17 04:35:19 +00:00
|
|
|
{ "alias_depth.vert", alias_depth_vert, sizeof (alias_depth_vert) },
|
2021-01-25 15:55:45 +00:00
|
|
|
{ "alias.frag", alias_frag, sizeof (alias_frag) },
|
2021-02-17 04:35:19 +00:00
|
|
|
{ "alias_gbuf.frag", alias_gbuf_frag, sizeof (alias_gbuf_frag) },
|
2021-04-24 01:40:39 +00:00
|
|
|
{ "alias_shadow.vert", alias_shadow_vert, sizeof (alias_shadow_vert) },
|
2020-12-23 05:32:29 +00:00
|
|
|
{ "passthrough.vert", passthrough_vert, sizeof (passthrough_vert) },
|
|
|
|
{ "pushcolor.frag", pushcolor_frag, sizeof (pushcolor_frag) },
|
2021-04-24 01:40:39 +00:00
|
|
|
{ "shadow.geom", shadow_geom, sizeof (shadow_geom) },
|
2020-12-23 05:32:29 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
#define BUILTIN "$builtin/"
|
|
|
|
#define BUILTIN_SIZE (sizeof (BUILTIN) - 1)
|
|
|
|
#define SHADER "$shader/"
|
|
|
|
#define SHADER_SIZE (sizeof (SHADER) - 1)
|
|
|
|
|
|
|
|
VkShaderModule
|
|
|
|
QFV_CreateShaderModule (qfv_device_t *device, const char *shader_path)
|
|
|
|
{
|
|
|
|
VkDevice dev = device->dev;
|
|
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
|
|
|
|
|
|
|
shaderdata_t _data = {};
|
|
|
|
shaderdata_t *data = 0;
|
|
|
|
dstring_t *path = 0;
|
2020-12-23 16:36:17 +00:00
|
|
|
QFile *file = 0;
|
2020-12-23 05:32:29 +00:00
|
|
|
VkShaderModule shader = 0;
|
|
|
|
|
|
|
|
if (strncmp (shader_path, BUILTIN, BUILTIN_SIZE) == 0) {
|
|
|
|
const char *name = shader_path + BUILTIN_SIZE;
|
|
|
|
|
|
|
|
for (int i = 0; builtin_shaders[i].name; i++) {
|
|
|
|
if (strcmp (builtin_shaders[i].name, name) == 0) {
|
|
|
|
data = &builtin_shaders[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (strncmp (shader_path, SHADER, SHADER_SIZE)) {
|
|
|
|
path = dstring_new ();
|
|
|
|
dsprintf (path, "%s/%s", FS_SHADERPATH, shader_path + SHADER_SIZE);
|
|
|
|
file = Qopen (path->str, "rbz");
|
|
|
|
} else {
|
|
|
|
file = QFS_FOpenFile (shader_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file) {
|
|
|
|
_data.size = Qfilesize (file);
|
|
|
|
_data.data = malloc (_data.size);
|
|
|
|
Qread (file, (void *) _data.data, _data.size);
|
|
|
|
Qclose (file);
|
|
|
|
data = &_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data) {
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_vulkan,
|
2021-01-05 05:15:35 +00:00
|
|
|
"QFV_CreateShaderModule: creating shader module %s\n",
|
|
|
|
shader_path);
|
2020-12-23 05:32:29 +00:00
|
|
|
VkShaderModuleCreateInfo createInfo = {
|
|
|
|
VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO, 0,
|
|
|
|
0, data->size, data->data
|
|
|
|
};
|
|
|
|
|
|
|
|
dfunc->vkCreateShaderModule (dev, &createInfo, 0, &shader);
|
2021-04-19 08:49:03 +00:00
|
|
|
QFV_duSetObjectName (device, VK_OBJECT_TYPE_SHADER_MODULE, shader,
|
|
|
|
shader_path);
|
2020-12-23 05:32:29 +00:00
|
|
|
} else {
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_vulkan,
|
2020-12-23 05:32:29 +00:00
|
|
|
"QFV_CreateShaderModule: could not find shader %s\n",
|
|
|
|
shader_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (path) {
|
|
|
|
dstring_delete (path);
|
|
|
|
}
|
|
|
|
if (_data.data) {
|
|
|
|
free ((void *) _data.data);
|
|
|
|
}
|
|
|
|
return shader;
|
|
|
|
}
|
|
|
|
|
2020-12-23 16:36:17 +00:00
|
|
|
void
|
|
|
|
QFV_DestroyShaderModule (qfv_device_t *device, VkShaderModule module)
|
|
|
|
{
|
|
|
|
VkDevice dev = device->dev;
|
|
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
|
|
|
|
|
|
|
dfunc->vkDestroyShaderModule (dev, module, 0);
|
|
|
|
}
|