video-core: Move logging macros over to new fmt-capable ones

This commit is contained in:
Lioncash 2018-04-25 08:13:44 -04:00
parent ea3151f475
commit b7551e457b
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7
5 changed files with 20 additions and 18 deletions

View file

@ -186,8 +186,8 @@ void Maxwell3D::ProcessQueryGet() {
}
void Maxwell3D::DrawArrays() {
LOG_DEBUG(HW_GPU, "called, topology=%d, count=%d", regs.draw.topology.Value(),
regs.vertex_buffer.count);
NGLOG_DEBUG(HW_GPU, "called, topology={}, count={}",
static_cast<u32>(regs.draw.topology.Value()), regs.vertex_buffer.count);
ASSERT_MSG(!(regs.index_array.count && regs.vertex_buffer.count), "Both indexed and direct?");
auto debug_context = Core::System::GetInstance().GetGPUDebugContext();