formatting

This commit is contained in:
jacob 2025-07-31 23:46:56 -05:00
parent 8553fa624f
commit 32631d0ae9
2 changed files with 3 additions and 5 deletions

View File

@ -61,7 +61,7 @@ void GPU_Startup(void)
/* TODO: Parallelize phases */ /* TODO: Parallelize phases */
GPU_D12_InitDevice(); GPU_D12_InitDevice();
GPU_D12_InitObjects(); GPU_D12_InitObjects();
GPU_D12_Pipelines(); GPU_InitPipelines();
GPU_D12_InitNoise(); GPU_D12_InitNoise();
/* Register callbacks */ /* Register callbacks */
@ -350,9 +350,7 @@ void GPU_D12_InitObjects(void)
* Dx12 pipeline initialization * Dx12 pipeline initialization
* ========================== */ * ========================== */
void GPU_D12_RegisterPipeline(u64 num_pipelines, GPU_D12_Pipeline **pipelines); void GPU_InitPipelines(void)
void GPU_D12_Pipelines(void)
{ {
__prof; __prof;
GPU_D12_SharedState *g = &GPU_D12_shared_state; GPU_D12_SharedState *g = &GPU_D12_shared_state;

View File

@ -461,7 +461,7 @@ void GPU_D12_InitObjects(void);
* Dx12 pipeline initialization * Dx12 pipeline initialization
* ========================== */ * ========================== */
void GPU_D12_Pipelines(void); void GPU_InitPipelines(void);
/* ========================== * /* ========================== *
* Noise texture initialization * Noise texture initialization