mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-22 03:31:34 +00:00
Id Software had pretty much nothing to do with the vulkan renderer (they still get credit for code that's heavily based on the original quake code, of course).
135 lines
3.6 KiB
C
135 lines
3.6 KiB
C
/*
|
|
pipeline.c
|
|
|
|
Vulkan pipeline functions
|
|
|
|
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
|
|
|
|
#include "QF/dstring.h"
|
|
|
|
#include "QF/Vulkan/qf_vid.h"
|
|
#include "QF/Vulkan/descriptor.h"
|
|
#include "QF/Vulkan/device.h"
|
|
#include "QF/Vulkan/pipeline.h"
|
|
|
|
VkPipelineCache
|
|
QFV_CreatePipelineCache (qfv_device_t *device, dstring_t *cacheData)
|
|
{
|
|
VkDevice dev = device->dev;
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
|
|
|
VkPipelineCacheCreateInfo createInfo = {
|
|
VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO, 0, 0,
|
|
cacheData->size, cacheData->str,
|
|
};
|
|
|
|
VkPipelineCache cache;
|
|
dfunc->vkCreatePipelineCache (dev, &createInfo, 0, &cache);
|
|
return cache;
|
|
}
|
|
|
|
dstring_t *
|
|
QFV_GetPipelineCacheData (qfv_device_t *device, VkPipelineCache cache)
|
|
{
|
|
VkDevice dev = device->dev;
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
|
dstring_t *cacheData = dstring_new ();
|
|
|
|
dfunc->vkGetPipelineCacheData (dev, cache, &cacheData->size, 0);
|
|
dstring_adjust (cacheData);
|
|
dfunc->vkGetPipelineCacheData (dev, cache,
|
|
&cacheData->size, cacheData->str);
|
|
return cacheData;
|
|
}
|
|
|
|
void
|
|
QFV_MergePipelineCaches (qfv_device_t *device,
|
|
VkPipelineCache targetCache,
|
|
qfv_pipelinecacheset_t *sourceCaches)
|
|
{
|
|
VkDevice dev = device->dev;
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
|
|
|
dfunc->vkMergePipelineCaches (dev, targetCache,
|
|
sourceCaches->size, sourceCaches->a);
|
|
}
|
|
|
|
VkPipelineLayout
|
|
QFV_CreatePipelineLayout (qfv_device_t *device,
|
|
qfv_descriptorsetlayoutset_t *layouts,
|
|
qfv_pushconstantrangeset_t *pushConstants)
|
|
{
|
|
VkDevice dev = device->dev;
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
|
|
|
VkPipelineLayoutCreateInfo createInfo = {
|
|
VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO, 0, 0,
|
|
layouts->size, layouts->a,
|
|
pushConstants->size, pushConstants->a,
|
|
};
|
|
|
|
VkPipelineLayout layout;
|
|
dfunc->vkCreatePipelineLayout (dev, &createInfo, 0, &layout);
|
|
return layout;
|
|
}
|
|
|
|
qfv_pipelineset_t *
|
|
QFV_CreateGraphicsPipelines (qfv_device_t *device,
|
|
VkPipelineCache cache,
|
|
qfv_graphicspipelinecreateinfoset_t *gpciSet)
|
|
{
|
|
VkDevice dev = device->dev;
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
|
|
|
__auto_type pipelines = QFV_AllocPipelineSet (gpciSet->size, malloc);
|
|
dfunc->vkCreateGraphicsPipelines (dev, cache, gpciSet->size, gpciSet->a, 0,
|
|
pipelines->a);
|
|
|
|
return pipelines;
|
|
}
|
|
|
|
qfv_pipelineset_t *
|
|
QFV_CreateComputePipelines (qfv_device_t *device,
|
|
VkPipelineCache cache,
|
|
qfv_computepipelinecreateinfoset_t *cpciSet)
|
|
{
|
|
VkDevice dev = device->dev;
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
|
|
|
__auto_type pipelines = QFV_AllocPipelineSet (cpciSet->size, malloc);
|
|
dfunc->vkCreateComputePipelines (dev, cache, cpciSet->size, cpciSet->a, 0,
|
|
pipelines->a);
|
|
return pipelines;
|
|
}
|
|
|
|
void
|
|
QFV_DestroyPipeline (qfv_device_t *device, VkPipeline pipeline)
|
|
{
|
|
VkDevice dev = device->dev;
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
|
|
|
dfunc->vkDestroyPipeline (dev, pipeline, 0);
|
|
}
|