GPUDevice: Replace remaining StdStringFromFromFormat() with fmt

This commit is contained in:
Stenzek
2024-07-19 13:44:09 +10:00
parent c286112966
commit 00ccea84b8
9 changed files with 37 additions and 79 deletions

View File

@ -176,8 +176,8 @@ public:
/// Ends any render pass, executes the command buffer, and invalidates cached state.
void SubmitCommandList(bool wait_for_completion);
void SubmitCommandList(bool wait_for_completion, const char* reason, ...);
void SubmitCommandListAndRestartRenderPass(const char* reason);
void SubmitCommandList(bool wait_for_completion, const std::string_view reason);
void SubmitCommandListAndRestartRenderPass(const std::string_view reason);
void UnbindPipeline(D3D12Pipeline* pl);
void UnbindTexture(D3D12Texture* tex);