mirror of
				https://github.com/gnif/LookingGlass.git
				synced 2025-10-31 04:31:57 +00:00 
			
		
		
		
	[client] opengl: fix unintended vertical clipping in spiceDrawFill
				
					
				
			This commit is contained in:
		 Jacob McNamee
					Jacob McNamee
				
			
				
					committed by
					
						 Geoffrey McRae
						Geoffrey McRae
					
				
			
			
				
	
			
			
			 Geoffrey McRae
						Geoffrey McRae
					
				
			
						parent
						
							ecd3692e1e
						
					
				
				
					commit
					c48bd35b3a
				
			| @@ -622,13 +622,13 @@ static void opengl_spiceDrawFill(LG_Renderer * renderer, int x, int y, int width | ||||
|   glBindTexture(GL_TEXTURE_2D, this->textures[SPICE_TEXTURE]); | ||||
|   glPixelStorei(GL_UNPACK_ALIGNMENT , 4    ); | ||||
|   glPixelStorei(GL_UNPACK_ROW_LENGTH, width); | ||||
|   for(; y < height; ++y) | ||||
|   for(int dy = 0; dy < height; ++dy) | ||||
|     glTexSubImage2D | ||||
|     ( | ||||
|       GL_TEXTURE_2D, | ||||
|       0      , | ||||
|       x      , | ||||
|       y      , | ||||
|       y + dy , | ||||
|       width  , | ||||
|       1      , | ||||
|       GL_BGRA, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user