You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
264 B

  1. #include "common.h"
  2. #define MCOMPOSITE(m1, a1, m2, a2) (m1*a1 + m2*a2*(1-a1))
  3. rgb_t applyPalette(char *palette, int val);
  4. rgb_t RGBcomposite(rgb_t top, float top_a, rgb_t bottom, float bottom_a);
  5. extern char TempPalette[256*3];
  6. extern char PrecipPalette[58*3];