mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
nvflinger: Move logging macros over to new fmt-compatible ones
This commit is contained in:
parent
285d8d8b7d
commit
72b497e876
2 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ void BufferQueue::SetPreallocatedBuffer(u32 slot, IGBPBuffer& igbp_buffer) {
|
||||||
buffer.igbp_buffer = igbp_buffer;
|
buffer.igbp_buffer = igbp_buffer;
|
||||||
buffer.status = Buffer::Status::Free;
|
buffer.status = Buffer::Status::Free;
|
||||||
|
|
||||||
LOG_WARNING(Service, "Adding graphics buffer %u", slot);
|
NGLOG_WARNING(Service, "Adding graphics buffer {}", slot);
|
||||||
|
|
||||||
queue.emplace_back(buffer);
|
queue.emplace_back(buffer);
|
||||||
|
|
||||||
|
@ -94,7 +94,7 @@ void BufferQueue::ReleaseBuffer(u32 slot) {
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 BufferQueue::Query(QueryType type) {
|
u32 BufferQueue::Query(QueryType type) {
|
||||||
LOG_WARNING(Service, "(STUBBED) called type=%u", static_cast<u32>(type));
|
NGLOG_WARNING(Service, "(STUBBED) called type={}", static_cast<u32>(type));
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case QueryType::NativeWindowFormat:
|
case QueryType::NativeWindowFormat:
|
||||||
// TODO(Subv): Use an enum for this
|
// TODO(Subv): Use an enum for this
|
||||||
|
|
|
@ -48,7 +48,7 @@ NVFlinger::~NVFlinger() {
|
||||||
}
|
}
|
||||||
|
|
||||||
u64 NVFlinger::OpenDisplay(const std::string& name) {
|
u64 NVFlinger::OpenDisplay(const std::string& name) {
|
||||||
LOG_WARNING(Service, "Opening display %s", name.c_str());
|
NGLOG_WARNING(Service, "Opening display {}", name);
|
||||||
|
|
||||||
// TODO(Subv): Currently we only support the Default display.
|
// TODO(Subv): Currently we only support the Default display.
|
||||||
ASSERT(name == "Default");
|
ASSERT(name == "Default");
|
||||||
|
|
Loading…
Reference in a new issue