2021-01-18 19:54:48 +01:00
|
|
|
#include "vk_framectl.h"
|
|
|
|
|
|
|
|
#include "vk_2d.h"
|
2021-02-01 20:05:04 +01:00
|
|
|
#include "vk_scene.h"
|
2021-02-20 23:54:57 +01:00
|
|
|
#include "vk_render.h"
|
2021-06-06 23:17:35 +02:00
|
|
|
#include "vk_rtx.h"
|
2021-01-18 19:54:48 +01:00
|
|
|
|
|
|
|
#include "eiface.h"
|
|
|
|
|
2021-08-22 21:57:11 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2021-01-18 19:54:48 +01:00
|
|
|
vk_framectl_t vk_frame = {0};
|
|
|
|
|
|
|
|
static struct
|
|
|
|
{
|
|
|
|
VkSemaphore image_available;
|
|
|
|
VkSemaphore done;
|
|
|
|
VkFence fence;
|
2021-02-20 23:54:57 +01:00
|
|
|
|
|
|
|
uint32_t swapchain_image_index;
|
2021-07-04 20:18:28 +02:00
|
|
|
|
|
|
|
qboolean rtx_enabled;
|
2021-08-22 21:57:11 +02:00
|
|
|
|
|
|
|
int last_frame_index; // Index of previous fully drawn frame into images array
|
2021-01-18 19:54:48 +01:00
|
|
|
} g_frame;
|
|
|
|
|
2021-01-23 19:54:44 +01:00
|
|
|
static VkFormat findSupportedImageFormat(const VkFormat *candidates, VkImageTiling tiling, VkFormatFeatureFlags features) {
|
|
|
|
for (int i = 0; candidates[i] != VK_FORMAT_UNDEFINED; ++i) {
|
|
|
|
VkFormatProperties props;
|
|
|
|
VkFormatFeatureFlags props_format;
|
|
|
|
vkGetPhysicalDeviceFormatProperties(vk_core.physical_device.device, candidates[i], &props);
|
|
|
|
switch (tiling) {
|
|
|
|
case VK_IMAGE_TILING_OPTIMAL:
|
|
|
|
props_format = props.optimalTilingFeatures; break;
|
|
|
|
case VK_IMAGE_TILING_LINEAR:
|
|
|
|
props_format = props.linearTilingFeatures; break;
|
|
|
|
default:
|
|
|
|
return VK_FORMAT_UNDEFINED;
|
|
|
|
}
|
|
|
|
if ((props_format & features) == features)
|
|
|
|
return candidates[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return VK_FORMAT_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VkImage createImage(uint32_t width, uint32_t height, VkFormat format, VkImageTiling tiling, VkImageUsageFlags usage) {
|
|
|
|
VkImage image;
|
|
|
|
VkImageCreateInfo ici = {.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO };
|
|
|
|
ici.imageType = VK_IMAGE_TYPE_2D;
|
|
|
|
ici.extent.width = width;
|
|
|
|
ici.extent.height = height;
|
|
|
|
ici.extent.depth = 1;
|
|
|
|
ici.mipLevels = 1;
|
|
|
|
ici.arrayLayers = 1;
|
|
|
|
ici.format = format;
|
|
|
|
ici.tiling = tiling;
|
|
|
|
ici.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED;
|
|
|
|
ici.usage = usage;
|
|
|
|
ici.samples = VK_SAMPLE_COUNT_1_BIT;
|
|
|
|
ici.sharingMode = VK_SHARING_MODE_EXCLUSIVE;
|
|
|
|
|
|
|
|
XVK_CHECK(vkCreateImage(vk_core.device, &ici, NULL, &image));
|
|
|
|
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO sort these based on ???
|
|
|
|
static const VkFormat depth_formats[] = {
|
|
|
|
VK_FORMAT_D32_SFLOAT,
|
|
|
|
VK_FORMAT_D24_UNORM_S8_UINT,
|
|
|
|
VK_FORMAT_X8_D24_UNORM_PACK32,
|
|
|
|
VK_FORMAT_D16_UNORM,
|
|
|
|
VK_FORMAT_D32_SFLOAT_S8_UINT,
|
|
|
|
VK_FORMAT_D16_UNORM_S8_UINT,
|
|
|
|
VK_FORMAT_UNDEFINED
|
|
|
|
};
|
|
|
|
|
|
|
|
static void createDepthImage(int w, int h) {
|
|
|
|
const VkImageTiling tiling = VK_IMAGE_TILING_OPTIMAL;
|
|
|
|
const VkImageUsageFlags usage = VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT;
|
|
|
|
VkMemoryRequirements memreq;
|
|
|
|
|
|
|
|
vk_frame.depth.image = createImage(w, h, vk_frame.depth.format, tiling, usage);
|
|
|
|
|
|
|
|
vkGetImageMemoryRequirements(vk_core.device, vk_frame.depth.image, &memreq);
|
2021-02-28 00:40:57 +01:00
|
|
|
vk_frame.depth.device_memory = allocateDeviceMemory(memreq, VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT, 0);
|
2021-01-23 19:54:44 +01:00
|
|
|
XVK_CHECK(vkBindImageMemory(vk_core.device, vk_frame.depth.image, vk_frame.depth.device_memory.device_memory, 0));
|
|
|
|
|
|
|
|
{
|
|
|
|
VkImageViewCreateInfo ivci = {.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO};
|
|
|
|
ivci.viewType = VK_IMAGE_VIEW_TYPE_2D;
|
|
|
|
ivci.format = vk_frame.depth.format;
|
|
|
|
ivci.image = vk_frame.depth.image;
|
|
|
|
ivci.subresourceRange.aspectMask = VK_IMAGE_ASPECT_DEPTH_BIT;
|
|
|
|
ivci.subresourceRange.levelCount = 1;
|
|
|
|
ivci.subresourceRange.layerCount = 1;
|
|
|
|
XVK_CHECK(vkCreateImageView(vk_core.device, &ivci, NULL, &vk_frame.depth.image_view));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void destroyDepthImage( void ) {
|
|
|
|
vkDestroyImageView(vk_core.device, vk_frame.depth.image_view, NULL);
|
|
|
|
vkDestroyImage(vk_core.device, vk_frame.depth.image, NULL);
|
|
|
|
freeDeviceMemory(&vk_frame.depth.device_memory);
|
|
|
|
}
|
|
|
|
|
2021-07-04 20:18:28 +02:00
|
|
|
static VkRenderPass createRenderPass( qboolean ray_tracing ) {
|
|
|
|
VkRenderPass render_pass;
|
|
|
|
|
2021-01-18 19:54:48 +01:00
|
|
|
VkAttachmentDescription attachments[] = {{
|
2021-01-18 22:33:22 +01:00
|
|
|
.format = VK_FORMAT_B8G8R8A8_UNORM, //SRGB,// FIXME too early swapchain.create_info.imageFormat;
|
2021-01-18 19:54:48 +01:00
|
|
|
.samples = VK_SAMPLE_COUNT_1_BIT,
|
2021-07-04 20:18:28 +02:00
|
|
|
.loadOp = ray_tracing ? VK_ATTACHMENT_LOAD_OP_LOAD : VK_ATTACHMENT_LOAD_OP_CLEAR /* TODO: prod renderer should not care VK_ATTACHMENT_LOAD_OP_DONT_CARE */,
|
2021-01-18 19:54:48 +01:00
|
|
|
.storeOp = VK_ATTACHMENT_STORE_OP_STORE,
|
|
|
|
.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE,
|
|
|
|
.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE,
|
2021-07-04 20:18:28 +02:00
|
|
|
.initialLayout = ray_tracing ? VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL : VK_IMAGE_LAYOUT_UNDEFINED,
|
2021-01-18 19:54:48 +01:00
|
|
|
.finalLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR
|
2021-01-23 19:54:44 +01:00
|
|
|
}, {
|
2021-01-18 19:54:48 +01:00
|
|
|
// Depth
|
2021-01-23 19:54:44 +01:00
|
|
|
.format = vk_frame.depth.format = findSupportedImageFormat(depth_formats, VK_IMAGE_TILING_OPTIMAL, VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT),
|
2021-01-18 19:54:48 +01:00
|
|
|
.samples = VK_SAMPLE_COUNT_1_BIT,
|
|
|
|
.loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR,
|
|
|
|
.storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE,
|
|
|
|
.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE,
|
|
|
|
.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE,
|
|
|
|
.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED,
|
|
|
|
.finalLayout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL
|
|
|
|
}};
|
|
|
|
|
|
|
|
VkAttachmentReference color_attachment = {
|
|
|
|
.attachment = 0,
|
|
|
|
.layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL,
|
|
|
|
};
|
|
|
|
|
2021-01-23 19:54:44 +01:00
|
|
|
VkAttachmentReference depth_attachment = {
|
|
|
|
.attachment = 1,
|
|
|
|
.layout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL,
|
|
|
|
};
|
2021-01-18 19:54:48 +01:00
|
|
|
|
|
|
|
VkSubpassDescription subdesc = {
|
|
|
|
.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS,
|
|
|
|
.colorAttachmentCount = 1,
|
|
|
|
.pColorAttachments = &color_attachment,
|
2021-01-23 19:54:44 +01:00
|
|
|
.pDepthStencilAttachment = &depth_attachment,
|
2021-01-18 19:54:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
VkRenderPassCreateInfo rpci = {
|
|
|
|
.sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO,
|
|
|
|
.attachmentCount = ARRAYSIZE(attachments),
|
|
|
|
.pAttachments = attachments,
|
|
|
|
.subpassCount = 1,
|
|
|
|
.pSubpasses = &subdesc,
|
|
|
|
};
|
|
|
|
|
2021-07-04 20:18:28 +02:00
|
|
|
XVK_CHECK(vkCreateRenderPass(vk_core.device, &rpci, NULL, &render_pass));
|
|
|
|
return render_pass;
|
2021-01-18 19:54:48 +01:00
|
|
|
}
|
|
|
|
|
2021-01-18 20:15:51 +01:00
|
|
|
static void destroySwapchain( VkSwapchainKHR swapchain )
|
|
|
|
{
|
|
|
|
for (uint32_t i = 0; i < vk_frame.num_images; ++i)
|
|
|
|
{
|
|
|
|
vkDestroyImageView(vk_core.device, vk_frame.image_views[i], NULL);
|
|
|
|
vkDestroyFramebuffer(vk_core.device, vk_frame.framebuffers[i], NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
vkDestroySwapchainKHR(vk_core.device, swapchain, NULL);
|
2021-01-23 19:54:44 +01:00
|
|
|
|
|
|
|
destroyDepthImage();
|
2021-01-18 20:15:51 +01:00
|
|
|
}
|
|
|
|
|
2021-09-25 05:46:36 +02:00
|
|
|
extern ref_globals_t *gpGlobals;
|
|
|
|
|
2021-01-18 19:54:48 +01:00
|
|
|
static qboolean createSwapchain( void )
|
|
|
|
{
|
|
|
|
VkSwapchainCreateInfoKHR *create_info = &vk_frame.create_info;
|
|
|
|
const uint32_t prev_num_images = vk_frame.num_images;
|
2021-08-22 21:57:11 +02:00
|
|
|
// recreating swapchain means invalidating any previous frames
|
|
|
|
g_frame.last_frame_index = -1;
|
|
|
|
|
2021-01-18 19:54:48 +01:00
|
|
|
XVK_CHECK(vkGetPhysicalDeviceSurfaceCapabilitiesKHR(vk_core.physical_device.device, vk_core.surface.surface, &vk_frame.surface_caps));
|
2021-09-25 05:46:36 +02:00
|
|
|
if (vk_frame.surface_caps.currentExtent.width == 0xfffffffful)
|
|
|
|
vk_frame.surface_caps.currentExtent.width = gpGlobals->width;
|
|
|
|
|
|
|
|
if (vk_frame.surface_caps.currentExtent.height == 0xfffffffful)
|
|
|
|
vk_frame.surface_caps.currentExtent.height = gpGlobals->height;
|
2021-01-18 19:54:48 +01:00
|
|
|
|
|
|
|
create_info->sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR;
|
|
|
|
create_info->pNext = NULL;
|
|
|
|
create_info->surface = vk_core.surface.surface;
|
2021-01-18 22:33:22 +01:00
|
|
|
create_info->imageFormat = VK_FORMAT_B8G8R8A8_UNORM;//SRGB; // TODO get from surface_formats
|
2021-01-18 19:54:48 +01:00
|
|
|
create_info->imageColorSpace = VK_COLORSPACE_SRGB_NONLINEAR_KHR; // TODO get from surface_formats
|
|
|
|
create_info->imageExtent.width = vk_frame.surface_caps.currentExtent.width;
|
|
|
|
create_info->imageExtent.height = vk_frame.surface_caps.currentExtent.height;
|
|
|
|
create_info->imageArrayLayers = 1;
|
2021-08-22 21:57:11 +02:00
|
|
|
create_info->imageUsage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT | VK_IMAGE_USAGE_TRANSFER_SRC_BIT | (vk_core.rtx ? /*VK_IMAGE_USAGE_STORAGE_BIT |*/ VK_IMAGE_USAGE_TRANSFER_DST_BIT : 0);
|
2021-01-18 19:54:48 +01:00
|
|
|
create_info->imageSharingMode = VK_SHARING_MODE_EXCLUSIVE;
|
|
|
|
create_info->preTransform = vk_frame.surface_caps.currentTransform;
|
|
|
|
create_info->compositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR;
|
|
|
|
create_info->presentMode = VK_PRESENT_MODE_FIFO_KHR; // TODO caps, MAILBOX is better
|
|
|
|
//create_info->presentMode = VK_PRESENT_MODE_IMMEDIATE_KHR; // TODO caps, MAILBOX is better
|
|
|
|
create_info->clipped = VK_TRUE;
|
|
|
|
create_info->oldSwapchain = vk_frame.swapchain;
|
|
|
|
|
|
|
|
create_info->minImageCount = vk_frame.surface_caps.minImageCount + 3;
|
|
|
|
if (vk_frame.surface_caps.maxImageCount && create_info->minImageCount > vk_frame.surface_caps.maxImageCount)
|
|
|
|
create_info->minImageCount = vk_frame.surface_caps.maxImageCount;
|
|
|
|
|
|
|
|
XVK_CHECK(vkCreateSwapchainKHR(vk_core.device, create_info, NULL, &vk_frame.swapchain));
|
2021-01-18 20:15:51 +01:00
|
|
|
if (create_info->oldSwapchain)
|
|
|
|
{
|
|
|
|
destroySwapchain( create_info->oldSwapchain );
|
|
|
|
}
|
2021-01-18 19:54:48 +01:00
|
|
|
|
2021-01-23 20:11:45 +01:00
|
|
|
createDepthImage(vk_frame.surface_caps.currentExtent.width, vk_frame.surface_caps.currentExtent.height);
|
|
|
|
|
2021-01-18 19:54:48 +01:00
|
|
|
vk_frame.num_images = 0;
|
|
|
|
XVK_CHECK(vkGetSwapchainImagesKHR(vk_core.device, vk_frame.swapchain, &vk_frame.num_images, NULL));
|
|
|
|
if (prev_num_images != vk_frame.num_images)
|
|
|
|
{
|
|
|
|
if (vk_frame.images)
|
|
|
|
{
|
|
|
|
Mem_Free(vk_frame.images);
|
|
|
|
Mem_Free(vk_frame.image_views);
|
|
|
|
Mem_Free(vk_frame.framebuffers);
|
|
|
|
}
|
|
|
|
|
|
|
|
vk_frame.images = Mem_Malloc(vk_core.pool, sizeof(*vk_frame.images) * vk_frame.num_images);
|
|
|
|
vk_frame.image_views = Mem_Malloc(vk_core.pool, sizeof(*vk_frame.image_views) * vk_frame.num_images);
|
|
|
|
vk_frame.framebuffers = Mem_Malloc(vk_core.pool, sizeof(*vk_frame.framebuffers) * vk_frame.num_images);
|
|
|
|
}
|
|
|
|
|
|
|
|
XVK_CHECK(vkGetSwapchainImagesKHR(vk_core.device, vk_frame.swapchain, &vk_frame.num_images, vk_frame.images));
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < vk_frame.num_images; ++i) {
|
|
|
|
VkImageViewCreateInfo ivci = {
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
|
|
|
|
.viewType = VK_IMAGE_VIEW_TYPE_2D,
|
|
|
|
.format = vk_frame.create_info.imageFormat,
|
|
|
|
.image = vk_frame.images[i],
|
|
|
|
.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
.subresourceRange.levelCount = 1,
|
|
|
|
.subresourceRange.layerCount = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
XVK_CHECK(vkCreateImageView(vk_core.device, &ivci, NULL, vk_frame.image_views + i));
|
|
|
|
|
|
|
|
{
|
|
|
|
const VkImageView attachments[] = {
|
|
|
|
vk_frame.image_views[i],
|
2021-01-23 19:54:44 +01:00
|
|
|
vk_frame.depth.image_view
|
2021-01-18 19:54:48 +01:00
|
|
|
};
|
|
|
|
VkFramebufferCreateInfo fbci = {
|
|
|
|
.sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO,
|
2021-07-04 20:18:28 +02:00
|
|
|
.renderPass = vk_frame.render_pass.raster,
|
2021-01-18 19:54:48 +01:00
|
|
|
.attachmentCount = ARRAYSIZE(attachments),
|
|
|
|
.pAttachments = attachments,
|
|
|
|
.width = vk_frame.create_info.imageExtent.width,
|
|
|
|
.height = vk_frame.create_info.imageExtent.height,
|
|
|
|
.layers = 1,
|
|
|
|
};
|
|
|
|
XVK_CHECK(vkCreateFramebuffer(vk_core.device, &fbci, NULL, vk_frame.framebuffers + i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void R_BeginFrame( qboolean clearScene )
|
|
|
|
{
|
2021-02-20 23:54:57 +01:00
|
|
|
// TODO should we handle multiple R_BeginFrame w/o R_EndFrame gracefully?
|
|
|
|
ASSERT(g_frame.swapchain_image_index == -1);
|
2021-01-18 20:15:51 +01:00
|
|
|
|
|
|
|
// Check that swapchain has the same size
|
|
|
|
{
|
|
|
|
VkSurfaceCapabilitiesKHR surface_caps;
|
|
|
|
XVK_CHECK(vkGetPhysicalDeviceSurfaceCapabilitiesKHR(vk_core.physical_device.device, vk_core.surface.surface, &surface_caps));
|
|
|
|
|
|
|
|
if (surface_caps.currentExtent.width != vk_frame.surface_caps.currentExtent.width
|
|
|
|
|| surface_caps.currentExtent.height != vk_frame.surface_caps.currentExtent.height)
|
|
|
|
{
|
|
|
|
createSwapchain();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-20 23:54:57 +01:00
|
|
|
for (int i = 0;; ++i)
|
|
|
|
{
|
|
|
|
const VkResult acquire_result = vkAcquireNextImageKHR(vk_core.device, vk_frame.swapchain, UINT64_MAX, g_frame.image_available,
|
|
|
|
VK_NULL_HANDLE, &g_frame.swapchain_image_index);
|
|
|
|
switch (acquire_result)
|
|
|
|
{
|
|
|
|
// TODO re-ask for swapchain size if it changed
|
|
|
|
case VK_ERROR_OUT_OF_DATE_KHR:
|
|
|
|
case VK_ERROR_SURFACE_LOST_KHR:
|
|
|
|
if (i == 0) {
|
|
|
|
createSwapchain();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gEngine.Con_Printf(S_WARN "vkAcquireNextImageKHR returned %s, frame will be lost\n", resultName(acquire_result));
|
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
XVK_CHECK(acquire_result);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-01-31 00:31:23 +01:00
|
|
|
// FIXME when
|
|
|
|
{
|
|
|
|
cvar_t* vid_gamma = gEngine.pfnGetCvarPointer( "gamma", 0 );
|
|
|
|
cvar_t* vid_brightness = gEngine.pfnGetCvarPointer( "brightness", 0 );
|
|
|
|
if( gEngine.R_DoResetGamma( ))
|
|
|
|
{
|
|
|
|
// paranoia cubemaps uses this
|
|
|
|
gEngine.BuildGammaTable( 1.8f, 0.0f );
|
|
|
|
|
|
|
|
// paranoia cubemap rendering
|
|
|
|
if( gEngine.drawFuncs->GL_BuildLightmaps )
|
|
|
|
gEngine.drawFuncs->GL_BuildLightmaps( );
|
|
|
|
}
|
|
|
|
else if( FBitSet( vid_gamma->flags, FCVAR_CHANGED ) || FBitSet( vid_brightness->flags, FCVAR_CHANGED ))
|
|
|
|
{
|
|
|
|
gEngine.BuildGammaTable( vid_gamma->value, vid_brightness->value );
|
|
|
|
// FIXME rebuild lightmaps
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-18 19:54:48 +01:00
|
|
|
vk2dBegin();
|
2021-07-04 20:18:28 +02:00
|
|
|
VK_RenderBegin( g_frame.rtx_enabled );
|
2021-05-28 19:10:20 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
VkCommandBufferBeginInfo beginfo = {
|
|
|
|
.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO,
|
|
|
|
.flags = VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT,
|
|
|
|
};
|
|
|
|
XVK_CHECK(vkBeginCommandBuffer(vk_core.cb, &beginfo));
|
|
|
|
}
|
2021-01-18 19:54:48 +01:00
|
|
|
}
|
|
|
|
|
2021-02-20 23:54:57 +01:00
|
|
|
void VK_RenderFrame( const struct ref_viewpass_s *rvp )
|
2021-01-18 19:54:48 +01:00
|
|
|
{
|
2021-02-20 23:54:57 +01:00
|
|
|
VK_SceneRender( rvp );
|
2021-01-18 19:54:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void R_EndFrame( void )
|
|
|
|
{
|
|
|
|
VkClearValue clear_value[] = {
|
|
|
|
{.color = {{1., 0., 0., 0.}}},
|
2021-01-23 19:54:44 +01:00
|
|
|
{.depthStencil = {1., 0.}} // TODO reverse-z
|
2021-01-18 19:54:48 +01:00
|
|
|
};
|
|
|
|
VkPipelineStageFlags stageflags = VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT;
|
|
|
|
|
2021-07-04 20:18:28 +02:00
|
|
|
if (g_frame.rtx_enabled)
|
2021-03-01 20:22:58 +01:00
|
|
|
VK_RenderEndRTX( vk_core.cb, vk_frame.image_views[g_frame.swapchain_image_index], vk_frame.images[g_frame.swapchain_image_index], vk_frame.create_info.imageExtent.width, vk_frame.create_info.imageExtent.height );
|
2021-02-27 22:43:49 +01:00
|
|
|
|
2021-02-06 20:52:10 +01:00
|
|
|
{
|
|
|
|
VkRenderPassBeginInfo rpbi = {
|
|
|
|
.sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO,
|
2021-07-04 20:18:28 +02:00
|
|
|
.renderPass = g_frame.rtx_enabled ? vk_frame.render_pass.after_ray_tracing : vk_frame.render_pass.raster,
|
2021-02-06 20:52:10 +01:00
|
|
|
.renderArea.extent.width = vk_frame.create_info.imageExtent.width,
|
|
|
|
.renderArea.extent.height = vk_frame.create_info.imageExtent.height,
|
|
|
|
.clearValueCount = ARRAYSIZE(clear_value),
|
|
|
|
.pClearValues = clear_value,
|
2021-02-20 23:54:57 +01:00
|
|
|
.framebuffer = vk_frame.framebuffers[g_frame.swapchain_image_index],
|
2021-02-06 20:52:10 +01:00
|
|
|
};
|
|
|
|
vkCmdBeginRenderPass(vk_core.cb, &rpbi, VK_SUBPASS_CONTENTS_INLINE);
|
|
|
|
}
|
2021-01-18 19:54:48 +01:00
|
|
|
|
2021-01-24 04:38:00 +01:00
|
|
|
{
|
|
|
|
const VkViewport viewport[] = {
|
|
|
|
{0.f, 0.f, (float)vk_frame.surface_caps.currentExtent.width, (float)vk_frame.surface_caps.currentExtent.height, 0.f, 1.f},
|
|
|
|
};
|
|
|
|
const VkRect2D scissor[] = {{
|
|
|
|
{0, 0},
|
|
|
|
vk_frame.surface_caps.currentExtent,
|
|
|
|
}};
|
|
|
|
|
|
|
|
vkCmdSetViewport(vk_core.cb, 0, ARRAYSIZE(viewport), viewport);
|
|
|
|
vkCmdSetScissor(vk_core.cb, 0, ARRAYSIZE(scissor), scissor);
|
|
|
|
}
|
|
|
|
|
2021-07-04 20:18:28 +02:00
|
|
|
if (!g_frame.rtx_enabled)
|
2021-02-27 22:43:49 +01:00
|
|
|
VK_RenderEnd( vk_core.cb );
|
|
|
|
|
2021-02-20 23:54:57 +01:00
|
|
|
vk2dEnd( vk_core.cb );
|
2021-01-18 19:54:48 +01:00
|
|
|
|
|
|
|
vkCmdEndRenderPass(vk_core.cb);
|
|
|
|
XVK_CHECK(vkEndCommandBuffer(vk_core.cb));
|
|
|
|
|
2021-03-01 19:52:08 +01:00
|
|
|
{
|
|
|
|
const VkSubmitInfo subinfo = {
|
|
|
|
.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO,
|
|
|
|
.pNext = NULL,
|
|
|
|
.commandBufferCount = 1,
|
|
|
|
.pCommandBuffers = &vk_core.cb,
|
|
|
|
.waitSemaphoreCount = 1,
|
|
|
|
.pWaitSemaphores = &g_frame.image_available,
|
|
|
|
.signalSemaphoreCount = 1,
|
|
|
|
.pSignalSemaphores = &g_frame.done,
|
|
|
|
.pWaitDstStageMask = &stageflags,
|
|
|
|
};
|
|
|
|
XVK_CHECK(vkQueueSubmit(vk_core.queue, 1, &subinfo, g_frame.fence));
|
|
|
|
}
|
2021-01-23 22:23:25 +01:00
|
|
|
|
|
|
|
{
|
2021-03-01 19:52:08 +01:00
|
|
|
const VkPresentInfoKHR presinfo = {
|
|
|
|
.sType = VK_STRUCTURE_TYPE_PRESENT_INFO_KHR,
|
|
|
|
.pSwapchains = &vk_frame.swapchain,
|
|
|
|
.pImageIndices = &g_frame.swapchain_image_index,
|
|
|
|
.swapchainCount = 1,
|
|
|
|
.pWaitSemaphores = &g_frame.done,
|
|
|
|
.waitSemaphoreCount = 1,
|
|
|
|
};
|
|
|
|
|
2021-01-23 22:23:25 +01:00
|
|
|
const VkResult present_result = vkQueuePresentKHR(vk_core.queue, &presinfo);
|
|
|
|
switch (present_result)
|
|
|
|
{
|
|
|
|
case VK_ERROR_OUT_OF_DATE_KHR:
|
|
|
|
case VK_ERROR_SURFACE_LOST_KHR:
|
|
|
|
gEngine.Con_Printf(S_WARN "vkQueuePresentKHR returned %s, frame will be lost\n", resultName(present_result));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
XVK_CHECK(present_result);
|
|
|
|
}
|
|
|
|
}
|
2021-01-18 19:54:48 +01:00
|
|
|
|
|
|
|
// TODO bad sync
|
|
|
|
XVK_CHECK(vkWaitForFences(vk_core.device, 1, &g_frame.fence, VK_TRUE, INT64_MAX));
|
|
|
|
XVK_CHECK(vkResetFences(vk_core.device, 1, &g_frame.fence));
|
2021-02-20 23:54:57 +01:00
|
|
|
|
2021-05-28 19:10:20 +02:00
|
|
|
if (vk_core.debug)
|
|
|
|
XVK_CHECK(vkQueueWaitIdle(vk_core.queue));
|
|
|
|
|
2021-02-23 03:54:13 +01:00
|
|
|
// TODO better sync implies multiple frames in flight, which means that we must
|
|
|
|
// retain temporary (SingleFrame) buffer contents for longer, until all users are done.
|
|
|
|
// (this probably means that we should really have some kind of refcount going on...)
|
|
|
|
// For now we can just erase these buffers now because of sync with fence
|
2021-08-11 20:43:33 +02:00
|
|
|
XVK_RenderBufferFrameClear();
|
2021-02-23 03:54:13 +01:00
|
|
|
|
2021-08-22 21:57:11 +02:00
|
|
|
g_frame.last_frame_index = g_frame.swapchain_image_index;
|
2021-02-20 23:54:57 +01:00
|
|
|
g_frame.swapchain_image_index = -1;
|
2021-01-18 19:54:48 +01:00
|
|
|
}
|
|
|
|
|
2021-07-04 20:18:28 +02:00
|
|
|
static void toggleRaytracing( void ) {
|
|
|
|
ASSERT(vk_core.rtx);
|
|
|
|
g_frame.rtx_enabled = !g_frame.rtx_enabled;
|
|
|
|
gEngine.Con_Printf(S_WARN "Switching ray tracing to %d\n", g_frame.rtx_enabled);
|
|
|
|
}
|
|
|
|
|
2021-01-18 19:54:48 +01:00
|
|
|
qboolean VK_FrameCtlInit( void )
|
|
|
|
{
|
2021-07-04 20:18:28 +02:00
|
|
|
vk_frame.render_pass.raster = createRenderPass(false);
|
|
|
|
if (vk_core.rtx)
|
|
|
|
vk_frame.render_pass.after_ray_tracing = createRenderPass(true);
|
2021-01-18 19:54:48 +01:00
|
|
|
|
|
|
|
if (!createSwapchain())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
g_frame.image_available = createSemaphore();
|
|
|
|
g_frame.done = createSemaphore();
|
|
|
|
g_frame.fence = createFence();
|
2021-02-20 23:54:57 +01:00
|
|
|
g_frame.swapchain_image_index = -1;
|
2021-01-18 19:54:48 +01:00
|
|
|
|
2021-07-04 20:18:28 +02:00
|
|
|
g_frame.rtx_enabled = vk_core.rtx;
|
|
|
|
|
|
|
|
if (vk_core.rtx)
|
|
|
|
gEngine.Cmd_AddCommand("vk_rtx_toggle", toggleRaytracing, "Toggle between rasterization and ray tracing");
|
|
|
|
|
2021-01-18 19:54:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VK_FrameCtlShutdown( void )
|
|
|
|
{
|
|
|
|
destroyFence(g_frame.fence);
|
|
|
|
destroySemaphore(g_frame.done);
|
|
|
|
destroySemaphore(g_frame.image_available);
|
|
|
|
|
2021-01-18 20:15:51 +01:00
|
|
|
destroySwapchain( vk_frame.swapchain );
|
2021-01-18 19:54:48 +01:00
|
|
|
|
2021-07-04 20:18:28 +02:00
|
|
|
vkDestroyRenderPass(vk_core.device, vk_frame.render_pass.raster, NULL);
|
|
|
|
if (vk_core.rtx)
|
|
|
|
vkDestroyRenderPass(vk_core.device, vk_frame.render_pass.after_ray_tracing, NULL);
|
2021-01-18 19:54:48 +01:00
|
|
|
}
|
2021-08-22 21:57:11 +02:00
|
|
|
|
|
|
|
static qboolean canBlitFromSwapchainToFormat( VkFormat dest_format ) {
|
|
|
|
VkFormatProperties props;
|
|
|
|
|
|
|
|
vkGetPhysicalDeviceFormatProperties(vk_core.physical_device.device, vk_frame.create_info.imageFormat, &props);
|
|
|
|
if (!(props.optimalTilingFeatures & VK_FORMAT_FEATURE_BLIT_SRC_BIT)) {
|
|
|
|
gEngine.Con_Reportf(S_WARN "Swapchain source format doesn't support blit\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
vkGetPhysicalDeviceFormatProperties(vk_core.physical_device.device, dest_format, &props);
|
|
|
|
if (!(props.linearTilingFeatures & VK_FORMAT_FEATURE_BLIT_DST_BIT)) {
|
|
|
|
gEngine.Con_Reportf(S_WARN "Destination format doesn't support blit\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static rgbdata_t *XVK_ReadPixels( void ) {
|
|
|
|
const VkFormat dest_format = VK_FORMAT_R8G8B8A8_UNORM;
|
|
|
|
VkImage dest_image;
|
|
|
|
VkImage frame_image;
|
|
|
|
device_memory_t dest_devmem;
|
|
|
|
rgbdata_t *r_shot = NULL;
|
|
|
|
const int
|
|
|
|
width = vk_frame.surface_caps.currentExtent.width,
|
|
|
|
height = vk_frame.surface_caps.currentExtent.height;
|
2021-08-22 22:26:25 +02:00
|
|
|
qboolean blit = canBlitFromSwapchainToFormat( dest_format );
|
2021-08-22 21:57:11 +02:00
|
|
|
|
|
|
|
if (g_frame.last_frame_index < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
frame_image = vk_frame.images[g_frame.last_frame_index];
|
|
|
|
|
|
|
|
// Create destination image to blit/copy framebuffer pixels to
|
|
|
|
{
|
|
|
|
VkImageCreateInfo image_create_info = {
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO,
|
|
|
|
.imageType = VK_IMAGE_TYPE_2D,
|
|
|
|
.extent.width = width,
|
|
|
|
.extent.height = height,
|
|
|
|
.extent.depth = 1,
|
|
|
|
.format = dest_format,
|
|
|
|
.mipLevels = 1,
|
|
|
|
.arrayLayers = 1,
|
|
|
|
.tiling = VK_IMAGE_TILING_LINEAR,
|
|
|
|
.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED,
|
|
|
|
.usage = VK_BUFFER_USAGE_TRANSFER_DST_BIT,
|
|
|
|
.samples = VK_SAMPLE_COUNT_1_BIT,
|
|
|
|
.sharingMode = VK_SHARING_MODE_EXCLUSIVE,
|
|
|
|
};
|
|
|
|
XVK_CHECK(vkCreateImage(vk_core.device, &image_create_info, NULL, &dest_image));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
VkMemoryRequirements memreq;
|
|
|
|
vkGetImageMemoryRequirements(vk_core.device, dest_image, &memreq);
|
2021-09-22 17:45:10 +02:00
|
|
|
dest_devmem = allocateDeviceMemory(memreq, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_CACHED_BIT, 0);
|
2021-08-22 21:57:11 +02:00
|
|
|
XVK_CHECK(vkBindImageMemory(vk_core.device, dest_image, dest_devmem.device_memory, dest_devmem.offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
VkCommandBufferBeginInfo beginfo = {
|
|
|
|
.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO,
|
|
|
|
.flags = VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT,
|
|
|
|
};
|
|
|
|
XVK_CHECK(vkBeginCommandBuffer(vk_core.cb_tex, &beginfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// Barrier 1: dest image
|
|
|
|
VkImageMemoryBarrier image_barrier[2] = {{
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
|
|
|
|
.image = dest_image,
|
|
|
|
.srcAccessMask = 0,
|
|
|
|
.dstAccessMask = VK_ACCESS_TRANSFER_WRITE_BIT,
|
|
|
|
.oldLayout = VK_IMAGE_LAYOUT_UNDEFINED,
|
|
|
|
.newLayout = VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL,
|
|
|
|
.subresourceRange = (VkImageSubresourceRange) {
|
|
|
|
.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
.baseMipLevel = 0,
|
|
|
|
.levelCount = 1,
|
|
|
|
.baseArrayLayer = 0,
|
|
|
|
.layerCount = 1,
|
|
|
|
}}, { // Barrier 2: source swapchain image
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
|
|
|
|
.image = frame_image,
|
|
|
|
.srcAccessMask = VK_ACCESS_MEMORY_READ_BIT, // ?????
|
|
|
|
.dstAccessMask = VK_ACCESS_TRANSFER_READ_BIT,
|
|
|
|
.oldLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR,
|
|
|
|
.newLayout = VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL,
|
|
|
|
.subresourceRange = (VkImageSubresourceRange) {
|
|
|
|
.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
.baseMipLevel = 0,
|
|
|
|
.levelCount = 1,
|
|
|
|
.baseArrayLayer = 0,
|
|
|
|
.layerCount = 1,
|
|
|
|
}}};
|
|
|
|
|
|
|
|
vkCmdPipelineBarrier(vk_core.cb_tex,
|
|
|
|
VK_PIPELINE_STAGE_TRANSFER_BIT,
|
|
|
|
VK_PIPELINE_STAGE_TRANSFER_BIT,
|
|
|
|
0, 0, NULL, 0, NULL, ARRAYSIZE(image_barrier), image_barrier);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blit/transfer
|
|
|
|
if (blit) {
|
|
|
|
const VkImageBlit blit = {
|
|
|
|
.srcSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
.dstSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
.srcSubresource.layerCount = 1,
|
|
|
|
.dstSubresource.layerCount = 1,
|
|
|
|
.srcOffsets = {{0}, {width, height, 1}},
|
|
|
|
.dstOffsets = {{0}, {width, height, 1}}
|
|
|
|
};
|
|
|
|
vkCmdBlitImage(vk_core.cb_tex,
|
|
|
|
frame_image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL,
|
|
|
|
dest_image, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1, &blit, VK_FILTER_NEAREST);
|
|
|
|
} else {
|
|
|
|
const VkImageCopy copy = {
|
|
|
|
.srcSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
.dstSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
.srcSubresource.layerCount = 1,
|
|
|
|
.dstSubresource.layerCount = 1,
|
|
|
|
.extent.width = width,
|
|
|
|
.extent.height = height,
|
|
|
|
.extent.depth = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
vkCmdCopyImage(vk_core.cb_tex,
|
|
|
|
frame_image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL,
|
|
|
|
dest_image, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1, ©);
|
|
|
|
|
|
|
|
gEngine.Con_Printf(S_WARN "Blit is not supported, screenshot will likely have mixed components; TODO: swizzle in software\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// Barrier 1: dest image
|
|
|
|
VkImageMemoryBarrier image_barrier[2] = {{
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
|
|
|
|
.image = dest_image,
|
|
|
|
.srcAccessMask = VK_ACCESS_TRANSFER_WRITE_BIT,
|
|
|
|
.dstAccessMask = VK_ACCESS_MEMORY_READ_BIT,
|
|
|
|
.oldLayout = VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL,
|
|
|
|
.newLayout = VK_IMAGE_LAYOUT_GENERAL,
|
|
|
|
.subresourceRange = (VkImageSubresourceRange) {
|
|
|
|
.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
.baseMipLevel = 0,
|
|
|
|
.levelCount = 1,
|
|
|
|
.baseArrayLayer = 0,
|
|
|
|
.layerCount = 1,
|
|
|
|
}}, { // Barrier 2: source swapchain image
|
|
|
|
.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
|
|
|
|
.image = frame_image,
|
|
|
|
.srcAccessMask = VK_ACCESS_TRANSFER_READ_BIT,
|
|
|
|
.dstAccessMask = VK_ACCESS_MEMORY_READ_BIT,
|
|
|
|
.oldLayout = VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL,
|
|
|
|
.newLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR,
|
|
|
|
.subresourceRange = (VkImageSubresourceRange) {
|
|
|
|
.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
.baseMipLevel = 0,
|
|
|
|
.levelCount = 1,
|
|
|
|
.baseArrayLayer = 0,
|
|
|
|
.layerCount = 1,
|
|
|
|
}}};
|
|
|
|
|
|
|
|
vkCmdPipelineBarrier(vk_core.cb_tex,
|
|
|
|
VK_PIPELINE_STAGE_TRANSFER_BIT,
|
|
|
|
VK_PIPELINE_STAGE_TRANSFER_BIT,
|
|
|
|
0, 0, NULL, 0, NULL, ARRAYSIZE(image_barrier), image_barrier);
|
|
|
|
}
|
|
|
|
|
|
|
|
// submit command buffer to queue
|
|
|
|
XVK_CHECK(vkEndCommandBuffer(vk_core.cb_tex));
|
|
|
|
{
|
|
|
|
VkSubmitInfo subinfo = {.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO};
|
|
|
|
subinfo.commandBufferCount = 1;
|
|
|
|
subinfo.pCommandBuffers = &vk_core.cb_tex;
|
|
|
|
XVK_CHECK(vkQueueSubmit(vk_core.queue, 1, &subinfo, VK_NULL_HANDLE));
|
|
|
|
}
|
|
|
|
|
|
|
|
// wait for queue
|
2021-09-22 17:45:10 +02:00
|
|
|
XVK_CHECK(vkQueueWaitIdle(vk_core.queue));
|
2021-08-22 21:57:11 +02:00
|
|
|
|
|
|
|
// copy bytes to buffer
|
|
|
|
{
|
|
|
|
const VkImageSubresource subres = {
|
|
|
|
.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
};
|
|
|
|
VkSubresourceLayout layout;
|
|
|
|
const char *mapped;
|
|
|
|
vkGetImageSubresourceLayout(vk_core.device, dest_image, &subres, &layout);
|
|
|
|
|
|
|
|
vkMapMemory(vk_core.device, dest_devmem.device_memory, 0, VK_WHOLE_SIZE, 0, (void**)&mapped);
|
|
|
|
|
|
|
|
mapped += layout.offset;
|
|
|
|
|
|
|
|
{
|
|
|
|
const int row_size = 4 * width;
|
|
|
|
poolhandle_t r_temppool = vk_core.pool; // TODO
|
|
|
|
|
|
|
|
r_shot = Mem_Calloc( r_temppool, sizeof( rgbdata_t ));
|
|
|
|
r_shot->width = width;
|
|
|
|
r_shot->height = height;
|
|
|
|
r_shot->flags = IMAGE_HAS_COLOR;
|
|
|
|
r_shot->type = PF_RGBA_32;
|
|
|
|
r_shot->size = r_shot->width * r_shot->height * gEngine.Image_GetPFDesc( r_shot->type )->bpp;
|
|
|
|
r_shot->palette = NULL;
|
|
|
|
r_shot->buffer = Mem_Malloc( r_temppool, r_shot->size );
|
|
|
|
|
2021-08-22 22:26:25 +02:00
|
|
|
if (!blit) {
|
|
|
|
if (dest_format != VK_FORMAT_R8G8B8A8_UNORM || vk_frame.create_info.imageFormat != VK_FORMAT_B8G8R8A8_UNORM) {
|
|
|
|
gEngine.Con_Printf(S_WARN "Don't have a blit function for this format pair, will save as-is w/o conversion; expect image to look wrong\n");
|
|
|
|
blit = true;
|
|
|
|
} else {
|
|
|
|
char *dst = r_shot->buffer;
|
|
|
|
for (int y = 0; y < height; ++y, mapped += layout.rowPitch) {
|
|
|
|
const char *src = mapped;
|
|
|
|
for (int x = 0; x < width; ++x, dst += 4, src += 4) {
|
|
|
|
dst[0] = src[2];
|
|
|
|
dst[1] = src[1];
|
|
|
|
dst[2] = src[0];
|
|
|
|
dst[3] = src[3];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (blit) {
|
|
|
|
for (int y = 0; y < height; ++y, mapped += layout.rowPitch) {
|
|
|
|
memcpy(r_shot->buffer + row_size * y, mapped, row_size);
|
|
|
|
}
|
2021-08-22 21:57:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vkUnmapMemory(vk_core.device, dest_devmem.device_memory);
|
|
|
|
}
|
|
|
|
|
|
|
|
vkDestroyImage(vk_core.device, dest_image, NULL);
|
|
|
|
freeDeviceMemory(&dest_devmem);
|
|
|
|
|
|
|
|
return r_shot;
|
|
|
|
}
|
|
|
|
|
|
|
|
qboolean VID_ScreenShot( const char *filename, int shot_type )
|
|
|
|
{
|
|
|
|
uint flags = 0;
|
|
|
|
int width = 0, height = 0;
|
|
|
|
qboolean result;
|
|
|
|
|
|
|
|
// get screen frame
|
|
|
|
rgbdata_t *r_shot = XVK_ReadPixels();
|
|
|
|
if (!r_shot)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch( shot_type )
|
|
|
|
{
|
|
|
|
case VID_SCREENSHOT:
|
|
|
|
break;
|
|
|
|
case VID_SNAPSHOT:
|
|
|
|
gEngine.FS_AllowDirectPaths( true );
|
|
|
|
break;
|
|
|
|
case VID_LEVELSHOT:
|
|
|
|
flags |= IMAGE_RESAMPLE;
|
|
|
|
if( gpGlobals->wideScreen )
|
|
|
|
{
|
|
|
|
height = 480;
|
|
|
|
width = 800;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
height = 480;
|
|
|
|
width = 640;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case VID_MINISHOT:
|
|
|
|
flags |= IMAGE_RESAMPLE;
|
|
|
|
height = 200;
|
|
|
|
width = 320;
|
|
|
|
break;
|
|
|
|
case VID_MAPSHOT:
|
|
|
|
flags |= IMAGE_RESAMPLE|IMAGE_QUANTIZE; // GoldSrc request overviews in 8-bit format
|
|
|
|
height = 768;
|
|
|
|
width = 1024;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
gEngine.Image_Process( &r_shot, width, height, flags, 0.0f );
|
|
|
|
|
|
|
|
// write image
|
|
|
|
result = gEngine.FS_SaveImage( filename, r_shot );
|
|
|
|
gEngine.FS_AllowDirectPaths( false ); // always reset after store screenshot
|
|
|
|
gEngine.FS_FreeImage( r_shot );
|
|
|
|
|
|
|
|
gEngine.Con_Printf("Wrote screenshot %s\n", filename);
|
|
|
|
return result;
|
|
|
|
}
|