FTTColour.cpp 716 B

12345678910111213141516171819
  1. #include "FTTColour.h"
  2. //-------------------------------------------------------------------------------------------------
  3. //00262D08
  4. void FTTColour_ApplyAlpha(uint, int) {
  5. }
  6. //-------------------------------------------------------------------------------------------------
  7. //00262D1C
  8. uint FTTColour_AddPercentileAlpha(unsigned int a1, float a2){
  9. srand((unsigned)time(NULL));
  10. int ret = rand();
  11. printf("%x%x%x",ret,a1,a2);
  12. return ret;
  13. }
  14. //-------------------------------------------------------------------------------------------------
  15. //00262D68
  16. void FTTColour_Recolour(uint, float, float, float, float) {
  17. }
  18. //-------------------------------------------------------------------------------------------------