blob: 11fce3b8f3e069ed2ab935f38464170219123e73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/**
* @brief Functions for adding shadows to scene rendering.
*/
#pragma once
#include "defines.h"
#include "ral_impl.h"
#include "ral_types.h"
#include "render_types.h"
typedef struct Shadow_Storage {
GPU_Renderpass* shadowmap_pass;
GPU_Pipeline* pipeline;
bool debug_quad_enabled;
TextureHandle depth_texture;
// TODO: Some statistics tracking
} Shadow_Storage;
typedef struct ShadowUniforms {
Mat4 light_space;
Mat4 model;
} ShadowUniforms;
typedef struct Camera Camera;
typedef struct Mat4 Mat4;
// --- Public API
PUB void Shadow_Init(Shadow_Storage* storage, u32x2 shadowmap_extents);
/** @brief Run shadow map generation for given entities, and store in a texture.
* @note Uses active directional light for now */
PUB void Shadow_Run(Shadow_Storage* storage, RenderEnt* entities, size_t entity_count);
/** @brief Get the shadow texture generated from shadowmap pass */
PUB Handle Shadow_GetShadowMapTexture(Shadow_Storage* storage);
// --- Internal
GPU_Renderpass* Shadow_RPassCreate(); // Creates the render pass
GPU_Pipeline* Shadow_PipelineCreate(GPU_Renderpass* rpass); // Creates the pipeline
void Shadow_ShadowmapExecute(Shadow_Storage* storage, Mat4 light_space_transform,
RenderEnt* entities, size_t entity_count);
void Shadow_RenderDebugQuad();
|