drm/radeon/kms/r200: fix bug in CS parser
The checks for CUBE and 3D textures were inverted. fixes fdo bug 24159 agd5f: added comments for clarity. Signed-off-by: Alex Deucher <alexdeucher@gmail.com> Signed-off-by: Dave Airlie <airlied@linux.ie>
This commit is contained in:
		
					parent
					
						
							
								700a0cc088
							
						
					
				
			
			
				commit
				
					
						f3d1ccc14f
					
				
			
		
					 1 changed files with 5 additions and 2 deletions
				
			
		| 
						 | 
					@ -371,13 +371,16 @@ int r200_packet0_check(struct radeon_cs_parser *p,
 | 
				
			||||||
		case 5:
 | 
							case 5:
 | 
				
			||||||
		case 6:
 | 
							case 6:
 | 
				
			||||||
		case 7:
 | 
							case 7:
 | 
				
			||||||
 | 
								/* 1D/2D */
 | 
				
			||||||
			track->textures[i].tex_coord_type = 0;
 | 
								track->textures[i].tex_coord_type = 0;
 | 
				
			||||||
			break;
 | 
								break;
 | 
				
			||||||
		case 1:
 | 
							case 1:
 | 
				
			||||||
			track->textures[i].tex_coord_type = 1;
 | 
								/* CUBE */
 | 
				
			||||||
 | 
								track->textures[i].tex_coord_type = 2;
 | 
				
			||||||
			break;
 | 
								break;
 | 
				
			||||||
		case 2:
 | 
							case 2:
 | 
				
			||||||
			track->textures[i].tex_coord_type = 2;
 | 
								/* 3D */
 | 
				
			||||||
 | 
								track->textures[i].tex_coord_type = 1;
 | 
				
			||||||
			break;
 | 
								break;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue