Amend use of non-standard compiler syntax

This commit is contained in:
Daniel Ludwig
2024-09-06 17:34:24 +02:00
committed by Ozkan Sezer
parent 0a8bf663b7
commit 0a44ea1b0b
4 changed files with 31 additions and 5 deletions

View File

@@ -3950,9 +3950,15 @@ static void D3D12_BeginRenderPass(
commandBuffer,
0);
SDL_FColor blendConstants;
blendConstants.r = 1.0f;
blendConstants.g = 1.0f;
blendConstants.b = 1.0f;
blendConstants.a = 1.0f;
D3D12_SetBlendConstants(
commandBuffer,
(SDL_FColor){ 1.0f, 1.0f, 1.0f, 1.0f });
blendConstants);
}
static void D3D12_INTERNAL_TrackUniformBuffer(