mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	Rename format to BC6H and BC6HS
This commit is contained in:
		
							parent
							
								
									4b97f88ef8
								
							
						
					
					
						commit
						5bd893f760
					
				| 
						 | 
				
			
			@ -14,8 +14,8 @@ TEST_FILE_DX10_BC5_TYPELESS = "Tests/images/bc5_typeless.dds"
 | 
			
		|||
TEST_FILE_DX10_BC5_UNORM = "Tests/images/bc5_unorm.dds"
 | 
			
		||||
TEST_FILE_DX10_BC5_SNORM = "Tests/images/bc5_snorm.dds"
 | 
			
		||||
TEST_FILE_BC5S = "Tests/images/bc5s.dds"
 | 
			
		||||
TEST_FILE_BC6 = "Tests/images/bc6h.dds"
 | 
			
		||||
TEST_FILE_BC6S = "Tests/images/bc6h_sf.dds"
 | 
			
		||||
TEST_FILE_BC6H = "Tests/images/bc6h.dds"
 | 
			
		||||
TEST_FILE_BC6HS = "Tests/images/bc6h_sf.dds"
 | 
			
		||||
TEST_FILE_DX10_BC7 = "Tests/images/bc7-argb-8bpp_MipMaps-1.dds"
 | 
			
		||||
TEST_FILE_DX10_BC7_UNORM_SRGB = "Tests/images/DXGI_FORMAT_BC7_UNORM_SRGB.dds"
 | 
			
		||||
TEST_FILE_DX10_R8G8B8A8 = "Tests/images/argb-32bpp_MipMaps-1.dds"
 | 
			
		||||
| 
						 | 
				
			
			@ -91,12 +91,12 @@ def test_dx10_bc5(image_path, expected_path):
 | 
			
		|||
@pytest.mark.parametrize(
 | 
			
		||||
    ("image_path", "expected_path"),
 | 
			
		||||
    (
 | 
			
		||||
        (TEST_FILE_BC6, TEST_FILE_BC6),
 | 
			
		||||
        (TEST_FILE_BC6S, TEST_FILE_BC6S),
 | 
			
		||||
        (TEST_FILE_BC6H, TEST_FILE_BC6H),
 | 
			
		||||
        (TEST_FILE_BC6HS, TEST_FILE_BC6HS),
 | 
			
		||||
    ),
 | 
			
		||||
)
 | 
			
		||||
def test_dx10_bc6(image_path, expected_path):
 | 
			
		||||
    """Check DX10 BC6/BC6S images can be opened"""
 | 
			
		||||
def test_dx10_bc6h(image_path, expected_path):
 | 
			
		||||
    """Check DX10 BC6H/BC6HS images can be opened"""
 | 
			
		||||
 | 
			
		||||
    with Image.open(image_path) as im:
 | 
			
		||||
        im.load()
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -176,11 +176,11 @@ class DdsImageFile(ImageFile.ImageFile):
 | 
			
		|||
                    n = 5
 | 
			
		||||
                    self.mode = "RGB"
 | 
			
		||||
                elif dxgi_format == DXGI_FORMAT_BC6H_UF16:
 | 
			
		||||
                    self.pixel_format = "BC6"
 | 
			
		||||
                    self.pixel_format = "BC6H"
 | 
			
		||||
                    n = 6
 | 
			
		||||
                    self.mode = "RGB"
 | 
			
		||||
                elif dxgi_format == DXGI_FORMAT_BC6H_SF16:
 | 
			
		||||
                    self.pixel_format = "BC6S"
 | 
			
		||||
                    self.pixel_format = "BC6HS"
 | 
			
		||||
                    n = 6
 | 
			
		||||
                    self.mode = "RGB"
 | 
			
		||||
                elif dxgi_format in (DXGI_FORMAT_BC7_TYPELESS, DXGI_FORMAT_BC7_UNORM):
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user