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