Guest User

Untitled

a guest
May 23rd, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.14 KB | None | 0 0
  1. /*---------------------------
  2. /////////////////////////////
  3. -----------------------------
  4.  SELECT [IMAGE] PRESET
  5. -----------------------------
  6. /////////////////////////////
  7. ---------------------------*/
  8.  
  9. #define NATURAL
  10. //#define CONTRAST
  11.  
  12. /*---------------------------
  13. /////////////////////////////
  14. -----------------------------
  15.  SELECT [BLOOM] PRESET
  16. -----------------------------
  17. /////////////////////////////
  18. ---------------------------*/
  19.  
  20. //#define BLOOM_WEAK
  21. //#define BLOOM_MEDIUM
  22. //#define BLOOM_STRONG
  23.  
  24. #define BLOOM_NATURAL
  25.  
  26. /*---------------------------
  27. /////////////////////////////
  28. -----------------------------
  29.  DEPTH OF FIELD
  30. -----------------------------
  31. /////////////////////////////
  32. ---------------------------*/
  33.  
  34. //#define DOF
  35.  
  36. float   DOFAmount = 0.57;
  37. float   DOFSizeMulti = 1;
  38.  
  39. float   DOFDepth = 1.68;
  40.  
  41. /*---------------------------
  42. /////////////////////////////
  43. -----------------------------
  44.  IMAGE PRESET
  45.   - [NATURAL]
  46. -----------------------------
  47. /////////////////////////////
  48. ---------------------------*/
  49.  
  50. #ifdef NATURAL
  51.  
  52.     float   ISaturation = 1.2;
  53.     float   IBrightness = 0.7;
  54.     float   IExposure = 0.5;
  55.     float   IContrast = 0.3;
  56.      
  57.     float   IWhiteAmount = 0.15;
  58.     float   IBlueShift = 0;
  59.      
  60.     float   BloomAmount = 0.35;
  61.     float   BloomAmountAdd = 1.2;
  62.    
  63.     float   BloomDistance = 100;
  64.      
  65.     float   BloomR = 1;
  66.     float   BloomG = 1;
  67.     float   BloomB = 1;
  68.    
  69.     float   BPAmount = 0.3;
  70.      
  71.     float   VignetteAmount = 0;
  72.  
  73. #endif //NATURAL
  74.  
  75. /*---------------------------
  76. /////////////////////////////
  77. -----------------------------
  78.  IMAGE PRESET
  79.   - [CONTRAST]
  80. -----------------------------
  81. /////////////////////////////
  82. ---------------------------*/
  83.  
  84. #ifdef CONTRAST
  85.  
  86.     float   ISaturation = 1;
  87.     float   IBrightness = 0.7;
  88.     float   IExposure = 0.5;
  89.     float   IContrast = 0.6;
  90.      
  91.     float   IWhiteAmount = 0.4;
  92.     float   IBlueShift = 0;
  93.      
  94.     float   BloomAmount = 0;
  95.     float   BloomAmountAdd = 0;
  96.    
  97.     float   BloomDistance = 125;
  98.      
  99.     float   BloomR = 1;
  100.     float   BloomG = 0.9;
  101.     float   BloomB = 0.8;
  102.    
  103.     float   BPAmount = 0.4;
  104.      
  105.     float   VignetteAmount = 0.22;
  106.  
  107. #endif //CONTRAST
Add Comment
Please, Sign In to add comment