mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Merge pull request #5243 from lioncash/move2
geometry_pipeline: std::move vertex handler in SetVertexHandler()
This commit is contained in:
		
						commit
						bcc80d0871
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -303,7 +303,7 @@ GeometryPipeline::GeometryPipeline(State& state) : state(state) {} | |||
| GeometryPipeline::~GeometryPipeline() = default; | ||||
| 
 | ||||
| void GeometryPipeline::SetVertexHandler(Shader::VertexHandler vertex_handler) { | ||||
|     this->vertex_handler = vertex_handler; | ||||
|     this->vertex_handler = std::move(vertex_handler); | ||||
| } | ||||
| 
 | ||||
| void GeometryPipeline::Setup(Shader::ShaderEngine* shader_engine) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue