mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	gl_resource_manager: add OGLPipeline
This commit is contained in:
		
							parent
							
								
									4f9b9c4b80
								
							
						
					
					
						commit
						bdab18d2d9
					
				
					 1 changed files with 32 additions and 0 deletions
				
			
		|  | @ -158,6 +158,38 @@ public: | |||
|     GLuint handle = 0; | ||||
| }; | ||||
| 
 | ||||
| class OGLPipeline : private NonCopyable { | ||||
| public: | ||||
|     OGLPipeline() = default; | ||||
|     OGLPipeline(OGLPipeline&& o) { | ||||
|         handle = std::exchange<GLuint>(o.handle, 0); | ||||
|     } | ||||
|     ~OGLPipeline() { | ||||
|         Release(); | ||||
|     } | ||||
|     OGLPipeline& operator=(OGLPipeline&& o) { | ||||
|         Release(); | ||||
|         handle = std::exchange<GLuint>(o.handle, 0); | ||||
|         return *this; | ||||
|     } | ||||
| 
 | ||||
|     void Create() { | ||||
|         if (handle != 0) | ||||
|             return; | ||||
|         glGenProgramPipelines(1, &handle); | ||||
|     } | ||||
| 
 | ||||
|     void Release() { | ||||
|         if (handle == 0) | ||||
|             return; | ||||
|         glDeleteProgramPipelines(1, &handle); | ||||
|         OpenGLState::GetCurState().ResetPipeline(handle).Apply(); | ||||
|         handle = 0; | ||||
|     } | ||||
| 
 | ||||
|     GLuint handle = 0; | ||||
| }; | ||||
| 
 | ||||
| class OGLBuffer : private NonCopyable { | ||||
| public: | ||||
|     OGLBuffer() = default; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue