mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Create command pool and frame timing fences
Nothing is actually done yet, so the reported fps is around 172k (yes, k), but startup and shutdown seems to be clean (yay validation layers).
This commit is contained in:
parent
b947cc1791
commit
559bd2e636
2 changed files with 92 additions and 33 deletions
|
@ -6,6 +6,13 @@
|
|||
#endif
|
||||
#include <vulkan/vulkan.h>
|
||||
|
||||
typedef struct vulkan_frameset_s {
|
||||
int curFrame; // index into fences
|
||||
int curImage; // index into cmdBuffers and swapchain images
|
||||
struct qfv_fenceset_s *fences;
|
||||
struct qfv_cmdbufferset_s *cmdBuffers;
|
||||
} vulkan_frameset_t;
|
||||
|
||||
typedef struct vulkan_ctx_s {
|
||||
void (*load_vulkan) (struct vulkan_ctx_s *ctx);
|
||||
void (*unload_vulkan) (struct vulkan_ctx_s *ctx);
|
||||
|
@ -23,6 +30,10 @@ typedef struct vulkan_ctx_s {
|
|||
struct qfv_device_s *device;
|
||||
struct qfv_swapchain_s *swapchain;
|
||||
VkSurfaceKHR surface; //FIXME surface = window, so "contains" swapchain
|
||||
|
||||
struct qfv_cmdpool_s *cmdpool;
|
||||
vulkan_frameset_t frameset;
|
||||
|
||||
#define EXPORTED_VULKAN_FUNCTION(fname) PFN_##fname fname;
|
||||
#define GLOBAL_LEVEL_VULKAN_FUNCTION(fname) PFN_##fname fname;
|
||||
#include "QF/Vulkan/funclist.h"
|
||||
|
|
|
@ -28,8 +28,10 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#define NH_DEFINE
|
||||
#include "vulkan/namehack.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
//#define NH_DEFINE
|
||||
//#include "vulkan/namehack.h"
|
||||
|
||||
#include "QF/sys.h"
|
||||
|
||||
|
@ -37,6 +39,7 @@
|
|||
#include "QF/plugin/vid_render.h"
|
||||
|
||||
#include "QF/Vulkan/qf_vid.h"
|
||||
#include "QF/Vulkan/command.h"
|
||||
#include "QF/Vulkan/device.h"
|
||||
#include "QF/Vulkan/instance.h"
|
||||
#include "QF/Vulkan/swapchain.h"
|
||||
|
@ -53,8 +56,43 @@ static vulkan_ctx_t *vulkan_ctx;
|
|||
static void
|
||||
vulkan_R_Init (void)
|
||||
{
|
||||
if (vulkan_ctx)
|
||||
Sys_Quit ();
|
||||
Vulkan_CreateSwapchain (vulkan_ctx);
|
||||
Sys_Printf ("R_Init %p %d", vulkan_ctx->swapchain->swapchain,
|
||||
vulkan_ctx->swapchain->numImages);
|
||||
for (int32_t i = 0; i < vulkan_ctx->swapchain->numImages; i++) {
|
||||
Sys_Printf (" %p", vulkan_ctx->swapchain->images[i]);
|
||||
}
|
||||
Sys_Printf ("\n");
|
||||
}
|
||||
|
||||
static void
|
||||
vulkan_SCR_UpdateScreen (double time, void (*f)(void), void (**g)(void))
|
||||
{
|
||||
static int count = 0;
|
||||
static double startTime;
|
||||
|
||||
if (++count >= 100) {
|
||||
double currenTime = Sys_DoubleTime ();
|
||||
double time = currenTime - startTime;
|
||||
startTime = currenTime;
|
||||
printf ("%d frames in %g s: %g fps \r", count, time, count / time);
|
||||
fflush (stdout);
|
||||
count = 0;
|
||||
}
|
||||
}
|
||||
|
||||
static qpic_t *
|
||||
vulkan_Draw_CachePic (const char *path, qboolean alpha)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static qpic_t qpic = { 1, 1, {0} };
|
||||
|
||||
static qpic_t *
|
||||
vulkan_Draw_MakePic (int width, int height, const byte *data)
|
||||
{
|
||||
return &qpic;
|
||||
}
|
||||
|
||||
static vid_model_funcs_t model_funcs = {
|
||||
|
@ -84,29 +122,29 @@ static vid_model_funcs_t model_funcs = {
|
|||
};
|
||||
|
||||
vid_render_funcs_t vulkan_vid_render_funcs = {
|
||||
vulkan_Draw_Init,
|
||||
vulkan_Draw_Character,
|
||||
vulkan_Draw_String,
|
||||
vulkan_Draw_nString,
|
||||
vulkan_Draw_AltString,
|
||||
vulkan_Draw_ConsoleBackground,
|
||||
vulkan_Draw_Crosshair,
|
||||
vulkan_Draw_CrosshairAt,
|
||||
vulkan_Draw_TileClear,
|
||||
vulkan_Draw_Fill,
|
||||
vulkan_Draw_TextBox,
|
||||
vulkan_Draw_FadeScreen,
|
||||
vulkan_Draw_BlendScreen,
|
||||
0,//vulkan_Draw_Init,
|
||||
0,//vulkan_Draw_Character,
|
||||
0,//vulkan_Draw_String,
|
||||
0,//vulkan_Draw_nString,
|
||||
0,//vulkan_Draw_AltString,
|
||||
0,//vulkan_Draw_ConsoleBackground,
|
||||
0,//vulkan_Draw_Crosshair,
|
||||
0,//vulkan_Draw_CrosshairAt,
|
||||
0,//vulkan_Draw_TileClear,
|
||||
0,//vulkan_Draw_Fill,
|
||||
0,//vulkan_Draw_TextBox,
|
||||
0,//vulkan_Draw_FadeScreen,
|
||||
0,//vulkan_Draw_BlendScreen,
|
||||
vulkan_Draw_CachePic,
|
||||
vulkan_Draw_UncachePic,
|
||||
0,//vulkan_Draw_UncachePic,
|
||||
vulkan_Draw_MakePic,
|
||||
vulkan_Draw_DestroyPic,
|
||||
vulkan_Draw_PicFromWad,
|
||||
vulkan_Draw_Pic,
|
||||
vulkan_Draw_Picf,
|
||||
vulkan_Draw_SubPic,
|
||||
0,//vulkan_Draw_DestroyPic,
|
||||
0,//vulkan_Draw_PicFromWad,
|
||||
0,//vulkan_Draw_Pic,
|
||||
0,//vulkan_Draw_Picf,
|
||||
0,//vulkan_Draw_SubPic,
|
||||
|
||||
0,//vulkan_SCR_UpdateScreen,
|
||||
vulkan_SCR_UpdateScreen,
|
||||
SCR_DrawRam,
|
||||
SCR_DrawTurtle,
|
||||
SCR_DrawPause,
|
||||
|
@ -152,8 +190,13 @@ vulkan_vid_render_choose_visual (void)
|
|||
{
|
||||
Vulkan_CreateDevice (vulkan_ctx);
|
||||
vulkan_ctx->choose_visual (vulkan_ctx);
|
||||
Sys_Printf ("vk choose visual %p %p\n", vulkan_ctx->device->dev,
|
||||
vulkan_ctx->device->queue.queue);
|
||||
vulkan_ctx->cmdpool = QFV_CreateCommandPool (vulkan_ctx->device,
|
||||
vulkan_ctx->device->queue.queueFamily,
|
||||
0, 0);
|
||||
Sys_Printf ("vk choose visual %p %p %d %p\n", vulkan_ctx->device->dev,
|
||||
vulkan_ctx->device->queue.queue,
|
||||
vulkan_ctx->device->queue.queueFamily,
|
||||
vulkan_ctx->cmdpool->cmdpool);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -161,14 +204,14 @@ vulkan_vid_render_create_context (void)
|
|||
{
|
||||
vulkan_ctx->create_window (vulkan_ctx);
|
||||
vulkan_ctx->surface = vulkan_ctx->create_surface (vulkan_ctx);
|
||||
Sys_Printf ("vk create context %p\n", vulkan_ctx->surface);
|
||||
Vulkan_CreateSwapchain (vulkan_ctx);
|
||||
Sys_Printf ("%p %d", vulkan_ctx->swapchain->swapchain,
|
||||
vulkan_ctx->swapchain->numImages);
|
||||
for (int32_t i = 0; i < vulkan_ctx->swapchain->numImages; i++) {
|
||||
Sys_Printf (" %p", vulkan_ctx->swapchain->images[i]);
|
||||
vulkan_ctx->frameset.curFrame = 0;
|
||||
vulkan_ctx->frameset.curImage = -1; // not acquired yet
|
||||
qfv_fence_t **fences = alloca (2 * sizeof (*fences));
|
||||
for (int i = 0; i < 2; i++) {
|
||||
fences[i]= QFV_CreateFence (vulkan_ctx->device, 1);
|
||||
}
|
||||
Sys_Printf ("\n");
|
||||
vulkan_ctx->frameset.fences = QFV_CreateFenceSet (fences, 2);
|
||||
Sys_Printf ("vk create context %p\n", vulkan_ctx->surface);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -190,6 +233,11 @@ vulkan_vid_render_init (void)
|
|||
static void
|
||||
vulkan_vid_render_shutdown (void)
|
||||
{
|
||||
for (int i = 0; i < vulkan_ctx->frameset.fences->numFences; i++) {
|
||||
QFV_DestroyFence (vulkan_ctx->frameset.fences->fences[i]);
|
||||
}
|
||||
QFV_DestroyFenceSet (vulkan_ctx->frameset.fences);
|
||||
QFV_DestroyCommandPool (vulkan_ctx->cmdpool);
|
||||
Vulkan_Shutdown_Common (vulkan_ctx);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue