mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	service/nvflinger: Mark FindVsyncEvent() as a const member function
This member function doesn't actually modify instance state, so it can be marked as a const member function.
This commit is contained in:
		
							parent
							
								
									3c02cdcc57
								
							
						
					
					
						commit
						7320c667df
					
				| @ -78,7 +78,7 @@ u32 NVFlinger::FindBufferQueueId(u64 display_id, u64 layer_id) const { | |||||||
|     return layer.buffer_queue->GetId(); |     return layer.buffer_queue->GetId(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| Kernel::SharedPtr<Kernel::ReadableEvent> NVFlinger::FindVsyncEvent(u64 display_id) { | Kernel::SharedPtr<Kernel::ReadableEvent> NVFlinger::FindVsyncEvent(u64 display_id) const { | ||||||
|     return FindDisplay(display_id).vsync_event.readable; |     return FindDisplay(display_id).vsync_event.readable; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -67,7 +67,7 @@ public: | |||||||
|     u32 FindBufferQueueId(u64 display_id, u64 layer_id) const; |     u32 FindBufferQueueId(u64 display_id, u64 layer_id) const; | ||||||
| 
 | 
 | ||||||
|     /// Gets the vsync event for the specified display.
 |     /// Gets the vsync event for the specified display.
 | ||||||
|     Kernel::SharedPtr<Kernel::ReadableEvent> FindVsyncEvent(u64 display_id); |     Kernel::SharedPtr<Kernel::ReadableEvent> FindVsyncEvent(u64 display_id) const; | ||||||
| 
 | 
 | ||||||
|     /// Obtains a buffer queue identified by the ID.
 |     /// Obtains a buffer queue identified by the ID.
 | ||||||
|     std::shared_ptr<BufferQueue> FindBufferQueue(u32 id) const; |     std::shared_ptr<BufferQueue> FindBufferQueue(u32 id) const; | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Lioncash
						Lioncash