mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 16:18:58 +00:00
D3D12: Migrate logging over to fmt
Migrates the logging over to the fmt-capable logger.
This commit is contained in:
parent
a9ef7e0e43
commit
d7834bd6b4
7 changed files with 16 additions and 15 deletions
|
@ -653,8 +653,8 @@ void Renderer::UpdateDescriptorTables()
|
|||
const bool uav_update_failed = (m_dirty_bits & DirtyState_PS_UAV) && !UpdateUAVDescriptorTable();
|
||||
if (texture_update_failed || sampler_update_failed || uav_update_failed)
|
||||
{
|
||||
WARN_LOG(VIDEO, "Executing command list while waiting for temporary %s",
|
||||
texture_update_failed ? "descriptors" : "samplers");
|
||||
WARN_LOG_FMT(VIDEO, "Executing command list while waiting for temporary {}",
|
||||
texture_update_failed ? "descriptors" : "samplers");
|
||||
ExecuteCommandList(false);
|
||||
SetRootSignatures();
|
||||
SetDescriptorHeaps();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue