mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	Qt: Update the WaitTree widget to show info about the current mutex of each thread.
This commit is contained in:
		@@ -9,7 +9,8 @@
 | 
			
		||||
#include "core/core_timing.h"
 | 
			
		||||
#include "core/hle/service/nvflinger/buffer_queue.h"
 | 
			
		||||
 | 
			
		||||
namespace Service::NVFlinger {
 | 
			
		||||
namespace Service {
 | 
			
		||||
namespace NVFlinger {
 | 
			
		||||
 | 
			
		||||
BufferQueue::BufferQueue(u32 id, u64 layer_id) : id(id), layer_id(layer_id) {
 | 
			
		||||
    native_handle = Kernel::Event::Create(Kernel::ResetType::OneShot, "BufferQueue NativeHandle");
 | 
			
		||||
@@ -110,4 +111,5 @@ void BufferQueue::SetBufferWaitEvent(Kernel::SharedPtr<Kernel::Event>&& wait_eve
 | 
			
		||||
    buffer_wait_event = std::move(wait_event);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
} // namespace Service::NVFlinger
 | 
			
		||||
} // namespace NVFlinger
 | 
			
		||||
} // namespace Service
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,8 @@ namespace CoreTiming {
 | 
			
		||||
struct EventType;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
namespace Service::NVFlinger {
 | 
			
		||||
namespace Service {
 | 
			
		||||
namespace NVFlinger {
 | 
			
		||||
 | 
			
		||||
struct IGBPBuffer {
 | 
			
		||||
    u32_le magic;
 | 
			
		||||
@@ -97,4 +98,5 @@ private:
 | 
			
		||||
    Kernel::SharedPtr<Kernel::Event> buffer_wait_event;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
} // namespace Service::NVFlinger
 | 
			
		||||
} // namespace NVFlinger
 | 
			
		||||
} // namespace Service
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user