2022-10-15 23:26:58 +02:00
|
|
|
#include "vk_meatpipe.h"
|
|
|
|
|
|
|
|
#include "vk_pipeline.h"
|
2022-10-30 00:34:37 +02:00
|
|
|
#include "ray_resources.h"
|
2022-10-15 23:26:58 +02:00
|
|
|
|
|
|
|
#include "ray_pass.h"
|
|
|
|
#include "vk_common.h"
|
|
|
|
|
2022-10-22 23:44:31 +02:00
|
|
|
#define MIN(a,b) ((a)<(b)?(a):(b))
|
|
|
|
|
2022-10-15 23:26:58 +02:00
|
|
|
#define CHAR4UINT(a,b,c,d) (((d)<<24)|((c)<<16)|((b)<<8)|(a))
|
|
|
|
static const uint32_t k_meatpipe_magic = CHAR4UINT('M', 'E', 'A', 'T');
|
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
typedef struct cursor_t {
|
2022-10-15 23:26:58 +02:00
|
|
|
const byte *data;
|
|
|
|
int off, size;
|
|
|
|
qboolean error;
|
|
|
|
} cursor_t;
|
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
typedef struct load_context_t {
|
2022-10-22 22:04:00 +02:00
|
|
|
cursor_t cur;
|
2022-11-19 21:02:18 +01:00
|
|
|
|
2022-10-22 22:04:00 +02:00
|
|
|
int shaders_count;
|
|
|
|
VkShaderModule *shaders;
|
2022-11-19 21:02:18 +01:00
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
vk_meatpipe_t meatpipe;
|
2022-10-22 22:04:00 +02:00
|
|
|
} load_context_t;
|
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
typedef struct vk_meatpipe_pass_s {
|
|
|
|
ray_pass_p pass;
|
2023-01-17 07:57:48 +01:00
|
|
|
int write_from;
|
2023-01-16 21:41:37 +01:00
|
|
|
int resource_count;
|
|
|
|
int *resource_map;
|
|
|
|
} vk_meatpipe_pass_t;
|
|
|
|
|
2022-10-15 23:26:58 +02:00
|
|
|
const void* curReadPtr(cursor_t *cur, int size) {
|
|
|
|
const int left = cur->size - cur->off;
|
|
|
|
if (left < size) {
|
|
|
|
cur->error = true;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const void* const ret = cur->data + cur->off;
|
|
|
|
cur->off += size;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CUR_ERROR(errmsg, ...) \
|
2022-10-22 22:04:00 +02:00
|
|
|
if (ctx->cur.error) { \
|
|
|
|
gEngine.Con_Printf(S_ERROR "(off=%d left=%d) " errmsg "\n", ctx->cur.off, (ctx->cur.size - ctx->cur.off), ##__VA_ARGS__); \
|
2022-10-15 23:26:58 +02:00
|
|
|
goto finalize; \
|
|
|
|
}
|
|
|
|
|
2022-10-23 01:53:32 +02:00
|
|
|
#define CUR_ERROR_RETURN(retval, errmsg, ...) \
|
|
|
|
if (ctx->cur.error) { \
|
|
|
|
gEngine.Con_Printf(S_ERROR "(off=%d left=%d) " errmsg "\n", ctx->cur.off, (ctx->cur.size - ctx->cur.off), ##__VA_ARGS__); \
|
|
|
|
return retval; \
|
|
|
|
}
|
|
|
|
|
2022-10-15 23:26:58 +02:00
|
|
|
#define READ_PTR(size, errmsg, ...) \
|
2022-10-22 22:04:00 +02:00
|
|
|
curReadPtr(&ctx->cur, size); CUR_ERROR(errmsg, ##__VA_ARGS__)
|
2022-10-15 23:26:58 +02:00
|
|
|
|
|
|
|
uint32_t curReadU32(cursor_t *cur) {
|
|
|
|
const void *src = curReadPtr(cur, sizeof(uint32_t));
|
|
|
|
if (!src)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
uint32_t ret;
|
|
|
|
memcpy(&ret, src, sizeof(uint32_t));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define READ_U32(errmsg, ...) \
|
2022-10-22 22:04:00 +02:00
|
|
|
curReadU32(&ctx->cur); CUR_ERROR(errmsg, ##__VA_ARGS__)
|
|
|
|
|
2022-10-23 01:53:32 +02:00
|
|
|
#define READ_U32_RETURN(retval, errmsg, ...) \
|
|
|
|
curReadU32(&ctx->cur); CUR_ERROR_RETURN(retval, errmsg, ##__VA_ARGS__)
|
|
|
|
|
2022-10-22 23:44:31 +02:00
|
|
|
int curReadStr(cursor_t *cur, char* out, int out_size) {
|
|
|
|
const int len = curReadU32(cur);
|
|
|
|
if (cur->error)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
const char *src = curReadPtr(cur, len);
|
|
|
|
if (cur->error)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
const int max = MIN(out_size, len); \
|
|
|
|
memcpy(out, src, max); \
|
|
|
|
out[max] = '\0';
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define READ_STR(out, errmsg, ...) \
|
|
|
|
curReadStr(&ctx->cur, out, sizeof(out)); CUR_ERROR(errmsg, ##__VA_ARGS__)
|
|
|
|
|
2022-10-29 21:52:29 +02:00
|
|
|
#define READ_STR_RETURN(retval, out, errmsg, ...) \
|
|
|
|
curReadStr(&ctx->cur, out, sizeof(out)); CUR_ERROR_RETURN(retval, errmsg, ##__VA_ARGS__)
|
|
|
|
|
2022-10-22 22:04:00 +02:00
|
|
|
#define NO_SHADER 0xffffffff
|
|
|
|
|
2022-10-30 00:34:37 +02:00
|
|
|
static struct ray_pass_s *pipelineLoadCompute(load_context_t *ctx, int i, const char *name, const ray_pass_layout_t *layout) {
|
2022-10-23 01:53:32 +02:00
|
|
|
const uint32_t shader_comp = READ_U32_RETURN(NULL, "Couldn't read comp shader for %d %s", i, name);
|
2022-10-22 22:04:00 +02:00
|
|
|
|
|
|
|
if (shader_comp >= ctx->shaders_count) {
|
|
|
|
gEngine.Con_Printf(S_ERROR "Pipeline %s shader index out of bounds %d (count %d)\n", name, shader_comp, ctx->shaders_count);
|
2022-10-23 01:53:32 +02:00
|
|
|
return NULL;
|
2022-10-22 22:04:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const ray_pass_create_compute_t rpcc = {
|
|
|
|
.debug_name = name,
|
2022-10-30 00:34:37 +02:00
|
|
|
.layout = *layout,
|
2022-10-22 22:04:00 +02:00
|
|
|
.shader_module = ctx->shaders[shader_comp],
|
|
|
|
};
|
|
|
|
|
|
|
|
return RayPassCreateCompute(&rpcc);
|
|
|
|
}
|
|
|
|
|
2022-10-30 00:34:37 +02:00
|
|
|
static struct ray_pass_s *pipelineLoadRT(load_context_t *ctx, int i, const char *name, const ray_pass_layout_t *layout) {
|
2022-10-23 01:53:32 +02:00
|
|
|
ray_pass_p ret = NULL;
|
2022-10-22 22:04:00 +02:00
|
|
|
ray_pass_create_tracing_t rpct = {
|
|
|
|
.debug_name = name,
|
2022-10-30 00:34:37 +02:00
|
|
|
.layout = *layout,
|
2022-10-22 22:04:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// FIXME bounds check shader indices
|
|
|
|
|
|
|
|
const uint32_t shader_rgen = READ_U32("Couldn't read rgen shader for %d %s", i, name);
|
|
|
|
rpct.raygen_module = ctx->shaders[shader_rgen];
|
|
|
|
|
|
|
|
rpct.miss_count = READ_U32("Couldn't read miss count for %d %s", i, name);
|
|
|
|
if (rpct.miss_count) {
|
|
|
|
rpct.miss_module = Mem_Malloc(vk_core.pool, sizeof(VkShaderModule) * rpct.miss_count);
|
|
|
|
for (int j = 0; j < rpct.miss_count; ++j) {
|
|
|
|
const uint32_t shader_miss = READ_U32("Couldn't read miss shader %d for %d %s", j, i, name);
|
|
|
|
rpct.miss_module[j] = ctx->shaders[shader_miss];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rpct.hit_count = READ_U32("Couldn't read hit count for %d %s", i, name);
|
|
|
|
if (rpct.hit_count) {
|
|
|
|
ray_pass_hit_group_t *hit = Mem_Malloc(vk_core.pool, sizeof(rpct.hit[0]) * rpct.hit_count);
|
|
|
|
rpct.hit = hit;
|
|
|
|
for (int j = 0; j < rpct.hit_count; ++j) {
|
|
|
|
const uint32_t closest = READ_U32("Couldn't read closest shader %d for %d %s", j, i, name);
|
|
|
|
const uint32_t any = READ_U32("Couldn't read any shader %d for %d %s", j, i, name);
|
|
|
|
|
|
|
|
hit[j] = (ray_pass_hit_group_t){
|
|
|
|
.closest_module = (closest == NO_SHADER) ? VK_NULL_HANDLE : ctx->shaders[closest],
|
|
|
|
.any_module = (any == NO_SHADER) ? VK_NULL_HANDLE : ctx->shaders[any],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-23 01:53:32 +02:00
|
|
|
ret = RayPassCreateTracing(&rpct);
|
2022-10-22 22:04:00 +02:00
|
|
|
|
|
|
|
finalize:
|
|
|
|
if (rpct.hit)
|
|
|
|
Mem_Free((void*)rpct.hit);
|
|
|
|
|
|
|
|
if (rpct.miss_module)
|
|
|
|
Mem_Free(rpct.miss_module);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2022-10-30 00:34:37 +02:00
|
|
|
#define MAX_BINDINGS 32
|
2023-01-17 07:57:48 +01:00
|
|
|
static qboolean readBindings(load_context_t *ctx, VkDescriptorSetLayoutBinding *bindings, vk_meatpipe_pass_t* pass ) {
|
|
|
|
pass->resource_map = NULL;
|
2023-01-20 07:51:32 +01:00
|
|
|
int write_from = -1;
|
2023-01-17 07:57:48 +01:00
|
|
|
const int count = READ_U32("Coulnd't read bindings count");
|
2022-10-29 21:52:29 +02:00
|
|
|
|
2022-10-30 00:34:37 +02:00
|
|
|
if (count > MAX_BINDINGS) {
|
|
|
|
gEngine.Con_Printf(S_ERROR "Too many binding (%d), max: %d\n", count, MAX_BINDINGS);
|
2023-01-17 07:57:48 +01:00
|
|
|
goto finalize;
|
2022-10-30 00:34:37 +02:00
|
|
|
}
|
|
|
|
|
2023-01-17 07:57:48 +01:00
|
|
|
pass->resource_map = Mem_Malloc(vk_core.pool, sizeof(int) * count);
|
2023-01-16 21:41:37 +01:00
|
|
|
|
2022-10-29 21:52:29 +02:00
|
|
|
for (int i = 0; i < count; ++i) {
|
2023-01-17 07:57:48 +01:00
|
|
|
const uint32_t header = READ_U32("Couldn't read header for binding %d", i);
|
|
|
|
const uint32_t res_index = READ_U32("Couldn't read res index for binding %d", i);
|
|
|
|
const uint32_t stages = READ_U32("Couldn't read stages for binding %d", i);
|
2022-11-19 21:02:18 +01:00
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
if (res_index >= ctx->meatpipe.resources_count) {
|
|
|
|
gEngine.Con_Printf(S_ERROR "Resource %d is out of bound %d for binding %d", res_index, ctx->meatpipe.resources_count, i);
|
2023-01-17 07:57:48 +01:00
|
|
|
goto finalize;
|
2022-11-19 21:02:18 +01:00
|
|
|
}
|
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
vk_meatpipe_resource_t *res = ctx->meatpipe.resources + res_index;
|
2022-10-29 21:52:29 +02:00
|
|
|
|
2022-11-05 20:33:07 +01:00
|
|
|
#define BINDING_WRITE_BIT 0x80000000u
|
2023-01-28 23:50:43 +01:00
|
|
|
#define BINDING_CREATE_BIT 0x40000000u
|
2022-11-05 20:33:07 +01:00
|
|
|
const qboolean write = !!(header & BINDING_WRITE_BIT);
|
2023-01-28 23:50:43 +01:00
|
|
|
const qboolean create = !!(header & BINDING_CREATE_BIT);
|
2022-11-05 20:33:07 +01:00
|
|
|
const uint32_t descriptor_set = (header >> 8) & 0xffu;
|
|
|
|
const uint32_t binding = header & 0xffu;
|
|
|
|
|
2023-01-17 07:57:48 +01:00
|
|
|
if (write && write_from < 0)
|
|
|
|
write_from = i;
|
|
|
|
|
|
|
|
if (!write && write_from >= 0) {
|
|
|
|
gEngine.Con_Printf(S_ERROR "Unsorted non-write binding found at %d(%s), writable started at %d\n",
|
|
|
|
i, res->name, write_from);
|
|
|
|
goto finalize;
|
|
|
|
}
|
|
|
|
|
2022-11-19 21:02:18 +01:00
|
|
|
const char *name = res->name;
|
|
|
|
|
2022-10-30 00:34:37 +02:00
|
|
|
bindings[i] = (VkDescriptorSetLayoutBinding){
|
|
|
|
.binding = binding,
|
2023-01-16 21:41:37 +01:00
|
|
|
.descriptorType = res->descriptor_type,
|
2022-11-26 19:29:59 +01:00
|
|
|
.descriptorCount = res->count,
|
2022-10-30 00:34:37 +02:00
|
|
|
.stageFlags = stages,
|
|
|
|
.pImmutableSamplers = NULL,
|
|
|
|
};
|
|
|
|
|
2023-01-17 07:57:48 +01:00
|
|
|
pass->resource_map[i] = res_index;
|
2023-01-16 21:41:37 +01:00
|
|
|
|
|
|
|
if (write)
|
2023-01-28 23:50:43 +01:00
|
|
|
res->flags |= MEATPIPE_RES_WRITE;
|
|
|
|
|
|
|
|
if (create)
|
|
|
|
res->flags |= MEATPIPE_RES_CREATE;
|
2023-01-16 21:41:37 +01:00
|
|
|
|
2023-01-17 07:57:48 +01:00
|
|
|
gEngine.Con_Reportf("Binding %d: %s ds=%d b=%d s=%08x res=%d type=%d write=%d\n",
|
|
|
|
i, name, descriptor_set, binding, stages, res_index, res->descriptor_type, write);
|
2022-10-29 21:52:29 +02:00
|
|
|
}
|
|
|
|
|
2023-01-17 07:57:48 +01:00
|
|
|
pass->write_from = write_from;
|
|
|
|
pass->resource_count = count;
|
|
|
|
return true;
|
2023-01-16 21:41:37 +01:00
|
|
|
|
2023-01-17 07:57:48 +01:00
|
|
|
finalize:
|
|
|
|
if (pass->resource_map)
|
|
|
|
Mem_Free(pass->resource_map);
|
|
|
|
|
|
|
|
pass->resource_map = NULL;
|
|
|
|
return false;
|
2022-10-29 21:52:29 +02:00
|
|
|
}
|
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
static qboolean readAndCreatePass(load_context_t *ctx, int i) {
|
2022-10-30 00:34:37 +02:00
|
|
|
VkDescriptorSetLayoutBinding bindings[MAX_BINDINGS];
|
2022-10-30 00:43:28 +02:00
|
|
|
ray_pass_layout_t layout = {
|
2022-10-30 00:34:37 +02:00
|
|
|
.bindings = bindings,
|
|
|
|
.push_constants = {0},
|
|
|
|
};
|
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
vk_meatpipe_pass_t *pass = ctx->meatpipe.passes + i;
|
|
|
|
memset(pass, 0, sizeof(*pass));
|
|
|
|
|
2022-10-30 00:43:28 +02:00
|
|
|
const uint32_t type = READ_U32("Couldn't read pipeline %d type", i);
|
|
|
|
|
|
|
|
char name[64];
|
|
|
|
READ_STR(name, "Couldn't read pipeline %d name", i);
|
|
|
|
|
|
|
|
gEngine.Con_Reportf("%d: loading pipeline %s\n", i, name);
|
|
|
|
|
2023-01-17 07:57:48 +01:00
|
|
|
if (!readBindings(ctx, bindings, pass)) {
|
2022-10-29 21:52:29 +02:00
|
|
|
gEngine.Con_Printf(S_ERROR "Couldn't read bindings for pipeline %s\n", name);
|
2023-01-16 21:41:37 +01:00
|
|
|
return false;
|
2022-10-29 21:52:29 +02:00
|
|
|
}
|
|
|
|
|
2023-01-17 07:57:48 +01:00
|
|
|
layout.bindings_count = pass->resource_count;
|
|
|
|
layout.write_from = pass->write_from;
|
|
|
|
|
2022-10-22 22:04:00 +02:00
|
|
|
#define PIPELINE_COMPUTE 1
|
|
|
|
#define PIPELINE_RAYTRACING 2
|
|
|
|
|
2022-10-29 21:52:29 +02:00
|
|
|
switch (type) {
|
2022-10-22 22:04:00 +02:00
|
|
|
case PIPELINE_COMPUTE:
|
2023-01-16 21:41:37 +01:00
|
|
|
pass->pass = pipelineLoadCompute(ctx, i, name, &layout);
|
|
|
|
break;
|
2022-10-22 22:04:00 +02:00
|
|
|
case PIPELINE_RAYTRACING:
|
2023-01-16 21:41:37 +01:00
|
|
|
pass->pass = pipelineLoadRT(ctx, i, name, &layout);
|
|
|
|
break;
|
2022-10-22 22:04:00 +02:00
|
|
|
default:
|
2022-10-29 21:52:29 +02:00
|
|
|
gEngine.Con_Printf(S_ERROR "Unexpected pipeline type %d\n", type);
|
2022-10-22 22:04:00 +02:00
|
|
|
}
|
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
if (pass->pass)
|
|
|
|
return true;
|
|
|
|
|
2022-10-22 22:04:00 +02:00
|
|
|
finalize:
|
2023-01-16 21:41:37 +01:00
|
|
|
if (pass->resource_map)
|
|
|
|
Mem_Free(pass->resource_map);
|
|
|
|
return false;
|
2022-10-22 22:04:00 +02:00
|
|
|
}
|
2022-10-15 23:26:58 +02:00
|
|
|
|
2022-11-19 21:02:18 +01:00
|
|
|
static qboolean readResources(load_context_t *ctx) {
|
2023-01-16 21:41:37 +01:00
|
|
|
ctx->meatpipe.resources_count = READ_U32("Couldn't read resources count");
|
|
|
|
ctx->meatpipe.resources = Mem_Malloc(vk_core.pool, sizeof(ctx->meatpipe.resources[0]) * ctx->meatpipe.resources_count);
|
2022-11-19 21:02:18 +01:00
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
for (int i = 0; i < ctx->meatpipe.resources_count; ++i) {
|
|
|
|
vk_meatpipe_resource_t *res = ctx->meatpipe.resources + i;
|
2023-01-21 20:35:00 +01:00
|
|
|
*res = (vk_meatpipe_resource_t){0};
|
|
|
|
|
2022-11-19 21:02:18 +01:00
|
|
|
READ_STR(res->name, "Couldn't read resource %d name", i);
|
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
res->descriptor_type = READ_U32("Couldn't read resource %d:%s type", i, res->name);
|
|
|
|
res->count = READ_U32("Couldn't read resource %d:%s count", i, res->name);
|
2022-11-26 19:29:59 +01:00
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
const qboolean is_image = res->descriptor_type == VK_DESCRIPTOR_TYPE_STORAGE_IMAGE || res->descriptor_type == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER;
|
2022-11-26 19:29:59 +01:00
|
|
|
|
|
|
|
if (is_image) {
|
2023-01-16 21:41:37 +01:00
|
|
|
res->image_format = READ_U32("Couldn't read image format for res %d:%s", i, res->name);
|
2023-01-30 19:21:18 +01:00
|
|
|
res->prev_frame_index_plus_1 = READ_U32("Couldn't read resource %d:%s previous frame index", i, res->name);
|
2022-11-26 19:29:59 +01:00
|
|
|
}
|
2022-11-19 22:11:24 +01:00
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
gEngine.Con_Reportf("Resource %d:%s = %08x is_image=%d image_format=%08x count=%d\n",
|
|
|
|
i, res->name, res->descriptor_type, is_image, res->image_format, res->count);
|
2022-11-19 21:02:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
finalize:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static qboolean readAndLoadShaders(load_context_t *ctx) {
|
|
|
|
ctx->shaders_count = READ_U32("Couldn't read shaders count");
|
|
|
|
ctx->shaders = Mem_Malloc(vk_core.pool, sizeof(VkShaderModule) * ctx->shaders_count);
|
|
|
|
for (int i = 0; i < ctx->shaders_count; ++i) {
|
|
|
|
ctx->shaders[i] = VK_NULL_HANDLE;
|
|
|
|
|
|
|
|
char name[64];
|
|
|
|
READ_STR(name, "Couldn't read shader %d name", i);
|
|
|
|
|
|
|
|
const int size = READ_U32("Couldn't read shader %s size", name);
|
|
|
|
const void *src = READ_PTR(size, "Couldn't read shader %s data", name);
|
|
|
|
|
|
|
|
if (VK_NULL_HANDLE == (ctx->shaders[i] = R_VkShaderLoadFromMem(src, size, name))) {
|
|
|
|
gEngine.Con_Printf(S_ERROR "Failed to load shader %d:%s\n", i, name);
|
|
|
|
goto finalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
gEngine.Con_Reportf("%d: Shader loaded %s\n", i, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
finalize:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
vk_meatpipe_t* R_VkMeatpipeCreateFromFile(const char *filename) {
|
|
|
|
vk_meatpipe_t *ret = NULL;
|
2022-10-15 23:26:58 +02:00
|
|
|
fs_offset_t size = 0;
|
|
|
|
byte* const buf = gEngine.fsapi->LoadFile(filename, &size, false);
|
|
|
|
|
|
|
|
if (!buf) {
|
|
|
|
gEngine.Con_Printf(S_ERROR "Couldn't read \"%s\"\n", filename);
|
2023-01-16 21:41:37 +01:00
|
|
|
return NULL;
|
2022-10-15 23:26:58 +02:00
|
|
|
}
|
|
|
|
|
2022-10-22 22:04:00 +02:00
|
|
|
load_context_t context = {
|
|
|
|
.cur = { .data = buf, .off = 0, .size = size },
|
|
|
|
.shaders_count = 0,
|
|
|
|
.shaders = NULL,
|
2023-01-16 21:41:37 +01:00
|
|
|
.meatpipe = (vk_meatpipe_t){0},
|
2022-10-22 22:04:00 +02:00
|
|
|
};
|
|
|
|
load_context_t *ctx = &context;
|
2022-10-15 23:26:58 +02:00
|
|
|
|
2022-10-17 08:26:59 +02:00
|
|
|
{
|
|
|
|
const uint32_t magic = READ_U32("Couldn't read magic");
|
|
|
|
|
|
|
|
if (magic != k_meatpipe_magic) {
|
|
|
|
gEngine.Con_Printf(S_ERROR "Meatpipe magic invalid for \"%s\": got %08x expected %08x\n", filename, magic, k_meatpipe_magic);
|
|
|
|
goto finalize;
|
|
|
|
}
|
2022-10-15 23:26:58 +02:00
|
|
|
}
|
|
|
|
|
2022-11-19 21:02:18 +01:00
|
|
|
if (!readResources(ctx))
|
|
|
|
goto finalize;
|
2022-10-15 23:26:58 +02:00
|
|
|
|
2022-11-19 21:02:18 +01:00
|
|
|
if (!readAndLoadShaders(ctx))
|
|
|
|
goto finalize;
|
2022-10-15 23:26:58 +02:00
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
ctx->meatpipe.passes_count = READ_U32("Couldn't read pipelines count");
|
|
|
|
ctx->meatpipe.passes = Mem_Malloc(vk_core.pool, sizeof(ctx->meatpipe.passes[0]) * ctx->meatpipe.passes_count);
|
|
|
|
for (int i = 0; i < ctx->meatpipe.passes_count; ++i) {
|
|
|
|
if (!readAndCreatePass(ctx, i)) {
|
|
|
|
for (int j = 0; j < i; ++j) {
|
|
|
|
RayPassDestroy(ctx->meatpipe.passes[j].pass);
|
|
|
|
Mem_Free(ctx->meatpipe.passes[j].resource_map);
|
|
|
|
}
|
2022-10-22 22:04:00 +02:00
|
|
|
goto finalize;
|
2023-01-16 21:41:37 +01:00
|
|
|
}
|
2022-10-16 00:09:45 +02:00
|
|
|
}
|
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
// Loading successful, allocate and fill
|
|
|
|
ret = Mem_Malloc(vk_core.pool, sizeof(*ret));
|
|
|
|
memcpy(ret, &ctx->meatpipe, sizeof(*ret));
|
|
|
|
ctx->meatpipe.resources = NULL;
|
2022-10-22 22:04:00 +02:00
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
finalize:
|
2022-10-22 22:04:00 +02:00
|
|
|
for (int i = 0; i < ctx->shaders_count; ++i) {
|
2022-10-22 23:44:31 +02:00
|
|
|
if (ctx->shaders[i] == VK_NULL_HANDLE)
|
|
|
|
break;
|
|
|
|
|
|
|
|
R_VkShaderDestroy(ctx->shaders[i]);
|
2022-10-15 23:26:58 +02:00
|
|
|
}
|
2022-10-17 08:26:59 +02:00
|
|
|
|
2022-10-22 22:04:00 +02:00
|
|
|
if (ctx->shaders)
|
|
|
|
Mem_Free(ctx->shaders);
|
2022-10-17 08:26:59 +02:00
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
if (ctx->meatpipe.resources)
|
|
|
|
Mem_Free(ctx->meatpipe.resources);
|
2022-11-19 21:02:18 +01:00
|
|
|
|
2022-10-15 23:26:58 +02:00
|
|
|
Mem_Free(buf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void R_VkMeatpipeDestroy(vk_meatpipe_t *mp) {
|
2022-10-22 22:04:00 +02:00
|
|
|
for (int i = 0; i < mp->passes_count; ++i) {
|
2023-01-17 07:57:48 +01:00
|
|
|
vk_meatpipe_pass_t *pass = mp->passes + i;
|
|
|
|
RayPassDestroy(pass->pass);
|
|
|
|
Mem_Free(pass->resource_map);
|
2022-10-22 22:04:00 +02:00
|
|
|
}
|
|
|
|
|
2023-01-17 07:57:48 +01:00
|
|
|
Mem_Free(mp->passes);
|
|
|
|
Mem_Free(mp->resources);
|
|
|
|
Mem_Free(mp);
|
2022-10-15 23:26:58 +02:00
|
|
|
}
|
2022-10-22 23:43:41 +02:00
|
|
|
|
2023-01-16 21:41:37 +01:00
|
|
|
void R_VkMeatpipePerform(vk_meatpipe_t *mp, VkCommandBuffer cmdbuf, vk_meatpipe_perfrom_args_t args) {
|
2022-10-22 23:43:41 +02:00
|
|
|
for (int i = 0; i < mp->passes_count; ++i) {
|
2023-01-17 07:57:48 +01:00
|
|
|
const vk_meatpipe_pass_t *pass = mp->passes + i;
|
|
|
|
RayPassPerform(pass->pass, cmdbuf,
|
|
|
|
(ray_pass_perform_args_t){
|
|
|
|
.frame_set_slot = args.frame_set_slot,
|
|
|
|
.width = args.width,
|
|
|
|
.height = args.height,
|
|
|
|
.resources = args.resources,
|
|
|
|
.resources_map = pass->resource_map,
|
|
|
|
}
|
|
|
|
);
|
2022-10-22 23:43:41 +02:00
|
|
|
}
|
|
|
|
}
|