mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	gl_shader_gen: remove TODO about Lerp behaviour verification. The implementation is verified against hardware
This commit is contained in:
		@@ -214,8 +214,6 @@ static void AppendColorCombiner(std::string& out, TevStageConfig::Operation oper
 | 
			
		||||
        out += variable_name + "[0] + " + variable_name + "[1] - vec3(0.5)";
 | 
			
		||||
        break;
 | 
			
		||||
    case Operation::Lerp:
 | 
			
		||||
        // TODO(bunnei): Verify if HW actually does this per-component, otherwise we can just use
 | 
			
		||||
        // builtin lerp
 | 
			
		||||
        out += variable_name + "[0] * " + variable_name + "[2] + " + variable_name +
 | 
			
		||||
               "[1] * (vec3(1.0) - " + variable_name + "[2])";
 | 
			
		||||
        break;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user