RGB Matrix Overhaul (#5372)
* RGB Matrix overhaul Breakout of animations to separate files Integration of optimized int based math lib Overhaul of rgb_matrix.c and animations for performance * Updating effect function api for future extensions * Combined the keypresses || keyreleases define checks into a single define so I stop forgetting it where necessary * Moving define RGB_MATRIX_KEYREACTIVE_ENABLED earlier in the include chain
This commit is contained in:
		
							parent
							
								
									68d8bb2b3f
								
							
						
					
					
						commit
						c98247e3dd
					
				
					 37 changed files with 3879 additions and 1010 deletions
				
			
		| 
						 | 
				
			
			@ -78,9 +78,11 @@ RGB hsv_to_rgb( HSV hsv )
 | 
			
		|||
			break;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
#ifdef USE_CIE1931_CURVE
 | 
			
		||||
	rgb.r = pgm_read_byte( &CIE1931_CURVE[rgb.r] );
 | 
			
		||||
	rgb.g = pgm_read_byte( &CIE1931_CURVE[rgb.g] );
 | 
			
		||||
	rgb.b = pgm_read_byte( &CIE1931_CURVE[rgb.b] );
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
	return rgb;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue