2019-07-06 05:42:53 +00:00
|
|
|
/*
|
|
|
|
Vulkan/qf_vid.h
|
|
|
|
|
|
|
|
vulkan vid stuff from the renderer.
|
|
|
|
|
2022-05-04 05:39:47 +00:00
|
|
|
Copyright (C) 2019 Bill Currie <bill@taniwha.org>
|
2019-07-06 05:42:53 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __QF_Vulkan_vid_h
|
|
|
|
#define __QF_Vulkan_vid_h
|
|
|
|
|
|
|
|
#include "QF/Vulkan/cvars.h"
|
|
|
|
|
2019-07-12 04:15:25 +00:00
|
|
|
#ifndef VK_NO_PROTOTYPES
|
|
|
|
#define VK_NO_PROTOTYPES
|
|
|
|
#endif
|
|
|
|
#include <vulkan/vulkan.h>
|
|
|
|
|
2022-06-08 09:16:10 +00:00
|
|
|
/** \defgroup vulkan Vulkan Renderer
|
|
|
|
*/
|
|
|
|
|
2022-05-31 01:41:19 +00:00
|
|
|
enum {
|
2022-11-27 15:52:07 +00:00
|
|
|
QFV_rp_particles,
|
2022-05-31 03:43:04 +00:00
|
|
|
QFV_rp_shadowmap,
|
2022-11-22 08:47:36 +00:00
|
|
|
QFV_rp_preoutput,
|
2022-11-30 18:00:47 +00:00
|
|
|
QFV_rp_translucent,
|
2022-05-31 01:41:19 +00:00
|
|
|
QFV_rp_main,
|
2022-11-21 08:25:55 +00:00
|
|
|
QFV_rp_output,
|
2022-05-31 01:41:19 +00:00
|
|
|
};
|
|
|
|
|
2021-02-14 02:35:06 +00:00
|
|
|
//FIXME location
|
2021-03-22 23:25:56 +00:00
|
|
|
typedef enum {
|
2022-11-30 18:00:47 +00:00
|
|
|
QFV_passDepth, // geometry
|
|
|
|
QFV_passTranslucentFrag, // geometry
|
|
|
|
QFV_passGBuffer, // geometry
|
|
|
|
QFV_passLighting, // single triangle
|
|
|
|
QFV_passCompose, // single triangle
|
2021-02-14 02:35:06 +00:00
|
|
|
|
|
|
|
QFV_NumPasses
|
2021-03-22 23:25:56 +00:00
|
|
|
} QFV_Subpass;
|
2021-02-14 02:35:06 +00:00
|
|
|
|
2021-02-25 04:46:33 +00:00
|
|
|
enum {
|
|
|
|
QFV_attachDepth,
|
|
|
|
QFV_attachColor,
|
2021-03-22 10:08:16 +00:00
|
|
|
QFV_attachEmission,
|
2021-02-25 04:46:33 +00:00
|
|
|
QFV_attachNormal,
|
|
|
|
QFV_attachPosition,
|
|
|
|
QFV_attachOpaque,
|
|
|
|
QFV_attachSwapchain,
|
|
|
|
};
|
|
|
|
|
2019-07-09 02:54:23 +00:00
|
|
|
struct vulkan_ctx_s;
|
2021-02-14 02:35:06 +00:00
|
|
|
void Vulkan_DestroyFrames (struct vulkan_ctx_s *ctx);
|
|
|
|
void Vulkan_CreateFrames (struct vulkan_ctx_s *ctx);
|
2021-03-24 10:20:53 +00:00
|
|
|
void Vulkan_CreateCapture (struct vulkan_ctx_s *ctx);
|
2022-05-30 06:58:22 +00:00
|
|
|
void Vulkan_CreateRenderPasses (struct vulkan_ctx_s *ctx);
|
2021-12-02 12:58:29 +00:00
|
|
|
void Vulkan_DestroyRenderPasses (struct vulkan_ctx_s *ctx);
|
2019-07-10 15:58:14 +00:00
|
|
|
void Vulkan_CreateSwapchain (struct vulkan_ctx_s *ctx);
|
2019-07-09 07:33:44 +00:00
|
|
|
void Vulkan_CreateDevice (struct vulkan_ctx_s *ctx);
|
2019-07-09 02:54:23 +00:00
|
|
|
void Vulkan_Init_Common (struct vulkan_ctx_s *ctx);
|
|
|
|
void Vulkan_Shutdown_Common (struct vulkan_ctx_s *ctx);
|
2021-01-10 16:24:15 +00:00
|
|
|
void Vulkan_CreateStagingBuffers (struct vulkan_ctx_s *ctx);
|
2019-07-06 05:42:53 +00:00
|
|
|
|
2023-02-19 03:38:46 +00:00
|
|
|
struct qfv_output_s;
|
|
|
|
void Vulkan_ConfigOutput (struct vulkan_ctx_s *ctx,
|
|
|
|
struct qfv_output_s *output);
|
|
|
|
|
2021-12-16 14:00:17 +00:00
|
|
|
VkPipeline Vulkan_CreateComputePipeline (struct vulkan_ctx_s *ctx,
|
|
|
|
const char *name);
|
|
|
|
VkPipeline Vulkan_CreateGraphicsPipeline (struct vulkan_ctx_s *ctx,
|
|
|
|
const char *name);
|
2021-02-04 08:03:49 +00:00
|
|
|
VkDescriptorPool Vulkan_CreateDescriptorPool (struct vulkan_ctx_s *ctx,
|
|
|
|
const char *name);
|
|
|
|
VkPipelineLayout Vulkan_CreatePipelineLayout (struct vulkan_ctx_s *ctx,
|
|
|
|
const char *name);
|
|
|
|
VkSampler Vulkan_CreateSampler (struct vulkan_ctx_s *ctx, const char *name);
|
|
|
|
VkDescriptorSetLayout Vulkan_CreateDescriptorSetLayout(struct vulkan_ctx_s*ctx,
|
|
|
|
const char *name);
|
|
|
|
|
2022-05-07 05:12:02 +00:00
|
|
|
struct entity_s;
|
|
|
|
void Vulkan_BeginEntityLabel (struct vulkan_ctx_s *ctx, VkCommandBuffer cmd,
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
struct entity_s ent);
|
2022-05-07 05:12:02 +00:00
|
|
|
|
2022-05-30 06:58:22 +00:00
|
|
|
struct plitem_s *Vulkan_GetConfig (struct vulkan_ctx_s *ctx, const char *name);
|
|
|
|
|
2022-12-02 04:17:07 +00:00
|
|
|
extern int vulkan_frame_width;
|
|
|
|
extern int vulkan_frame_height;
|
2022-12-02 04:29:15 +00:00
|
|
|
extern int vulkan_oit_fragments;
|
2022-12-02 04:17:07 +00:00
|
|
|
|
2019-07-06 05:42:53 +00:00
|
|
|
#endif // __QF_Vulkan_vid_h
|