mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	gl_rasterizer_cache: Assert that component type is UNorm or format is RGBA16F.
This commit is contained in:
		@@ -59,7 +59,8 @@ static const FormatTuple& GetFormatTuple(PixelFormat pixel_format, ComponentType
 | 
			
		||||
    const SurfaceType type = SurfaceParams::GetFormatType(pixel_format);
 | 
			
		||||
    if (type == SurfaceType::ColorTexture) {
 | 
			
		||||
        ASSERT(static_cast<size_t>(pixel_format) < tex_format_tuples.size());
 | 
			
		||||
        // For now only UNORM components are supported
 | 
			
		||||
        // For now only UNORM components are supported, or RGBA16F which is type FLOAT
 | 
			
		||||
        ASSERT(component_type == ComponentType::UNorm || pixel_format == PixelFormat::RGBA16F);
 | 
			
		||||
        return tex_format_tuples[static_cast<unsigned int>(pixel_format)];
 | 
			
		||||
    } else if (type == SurfaceType::Depth || type == SurfaceType::DepthStencil) {
 | 
			
		||||
        // TODO(Subv): Implement depth formats
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user