mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Add scope acquire context to simplify MakeCurrent and DoneCurrent calls
This commit is contained in:
		
							parent
							
								
									4f19d380f5
								
							
						
					
					
						commit
						db7a627a2e
					
				
					 3 changed files with 42 additions and 0 deletions
				
			
		|  | @ -106,6 +106,8 @@ add_library(core STATIC | |||
|     frontend/input.h | ||||
|     frontend/mic.h | ||||
|     frontend/mic.cpp | ||||
|     frontend/scope_acquire_context.cpp | ||||
|     frontend/scope_acquire_context.h | ||||
|     gdbstub/gdbstub.cpp | ||||
|     gdbstub/gdbstub.h | ||||
|     hle/applets/applet.cpp | ||||
|  |  | |||
							
								
								
									
										17
									
								
								src/core/frontend/scope_acquire_context.cpp
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								src/core/frontend/scope_acquire_context.cpp
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,17 @@ | |||
| // Copyright 2019 yuzu Emulator Project
 | ||||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "core/frontend/emu_window.h" | ||||
| #include "core/frontend/scope_acquire_context.h" | ||||
| 
 | ||||
| namespace Frontend { | ||||
| 
 | ||||
| ScopeAcquireContext::ScopeAcquireContext(Frontend::GraphicsContext& context) : context{context} { | ||||
|     context.MakeCurrent(); | ||||
| } | ||||
| ScopeAcquireContext::~ScopeAcquireContext() { | ||||
|     context.DoneCurrent(); | ||||
| } | ||||
| 
 | ||||
| } // namespace Frontend
 | ||||
							
								
								
									
										23
									
								
								src/core/frontend/scope_acquire_context.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								src/core/frontend/scope_acquire_context.h
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,23 @@ | |||
| // Copyright 2019 yuzu Emulator Project
 | ||||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #pragma once | ||||
| 
 | ||||
| #include "common/common_types.h" | ||||
| 
 | ||||
| namespace Frontend { | ||||
| 
 | ||||
| class GraphicsContext; | ||||
| 
 | ||||
| /// Helper class to acquire/release window context within a given scope
 | ||||
| class ScopeAcquireContext : NonCopyable { | ||||
| public: | ||||
|     explicit ScopeAcquireContext(Frontend::GraphicsContext& context); | ||||
|     ~ScopeAcquireContext(); | ||||
| 
 | ||||
| private: | ||||
|     Frontend::GraphicsContext& context; | ||||
| }; | ||||
| 
 | ||||
| } // namespace Frontend
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue