From 32631d0ae99d99dfb87016621453ce44a06138fb Mon Sep 17 00:00:00 2001 From: jacob Date: Thu, 31 Jul 2025 23:46:56 -0500 Subject: [PATCH] formatting --- src/gpu/gpu_dx12.c | 6 ++---- src/gpu/gpu_dx12.h | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/gpu/gpu_dx12.c b/src/gpu/gpu_dx12.c index 7ee79559..fde8f86a 100644 --- a/src/gpu/gpu_dx12.c +++ b/src/gpu/gpu_dx12.c @@ -61,7 +61,7 @@ void GPU_Startup(void) /* TODO: Parallelize phases */ GPU_D12_InitDevice(); GPU_D12_InitObjects(); - GPU_D12_Pipelines(); + GPU_InitPipelines(); GPU_D12_InitNoise(); /* Register callbacks */ @@ -350,9 +350,7 @@ void GPU_D12_InitObjects(void) * Dx12 pipeline initialization * ========================== */ -void GPU_D12_RegisterPipeline(u64 num_pipelines, GPU_D12_Pipeline **pipelines); - -void GPU_D12_Pipelines(void) +void GPU_InitPipelines(void) { __prof; GPU_D12_SharedState *g = &GPU_D12_shared_state; diff --git a/src/gpu/gpu_dx12.h b/src/gpu/gpu_dx12.h index 1f741ece..089650f0 100644 --- a/src/gpu/gpu_dx12.h +++ b/src/gpu/gpu_dx12.h @@ -461,7 +461,7 @@ void GPU_D12_InitObjects(void); * Dx12 pipeline initialization * ========================== */ -void GPU_D12_Pipelines(void); +void GPU_InitPipelines(void); /* ========================== * * Noise texture initialization