mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	kepler_compute: Remove unused variables
This commit is contained in:
		@@ -119,14 +119,6 @@ Texture::TICEntry KeplerCompute::GetTICEntry(u32 tic_index) const {
 | 
			
		||||
    Texture::TICEntry tic_entry;
 | 
			
		||||
    memory_manager.ReadBlockUnsafe(tic_address_gpu, &tic_entry, sizeof(Texture::TICEntry));
 | 
			
		||||
 | 
			
		||||
    const auto r_type{tic_entry.r_type.Value()};
 | 
			
		||||
    const auto g_type{tic_entry.g_type.Value()};
 | 
			
		||||
    const auto b_type{tic_entry.b_type.Value()};
 | 
			
		||||
    const auto a_type{tic_entry.a_type.Value()};
 | 
			
		||||
 | 
			
		||||
    // TODO(Subv): Different data types for separate components are not supported
 | 
			
		||||
    DEBUG_ASSERT(r_type == g_type && r_type == b_type && r_type == a_type);
 | 
			
		||||
 | 
			
		||||
    return tic_entry;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user