mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	gl_rasterizer: create the texture before applying the state
this is a rebasing error from #2792. It doesn't affect much though, because the later more Apply() call fixes/hides it
This commit is contained in:
		
							parent
							
								
									72b69cea4b
								
							
						
					
					
						commit
						f1e377f57e
					
				| @ -94,10 +94,10 @@ RasterizerOpenGL::RasterizerOpenGL() : shader_dirty(true) { | ||||
|     framebuffer.Create(); | ||||
| 
 | ||||
|     // Allocate and bind lighting lut textures
 | ||||
|     lighting_lut_buffer.Create(); | ||||
|     lighting_lut.Create(); | ||||
|     state.lighting_lut.texture_buffer = lighting_lut.handle; | ||||
|     state.Apply(); | ||||
|     lighting_lut.Create(); | ||||
|     lighting_lut_buffer.Create(); | ||||
|     glBindBuffer(GL_TEXTURE_BUFFER, lighting_lut_buffer.handle); | ||||
|     glBufferData(GL_TEXTURE_BUFFER, | ||||
|                  sizeof(GLfloat) * 2 * 256 * Pica::LightingRegs::NumLightingSampler, nullptr, | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 wwylele
						wwylele