Advertisement
RaYRoDTV

Post Processing Effects

Jul 5th, 2025
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ============================================
  2. // LUMINOUS DARKS SYSTEM (0-4)
  3. // ============================================
  4. #define PARAM_LUMINOUS_DARK_STRENGTH 0.0
  5. #define PARAM_LUMINOUS_DARK_THRESHOLD 1.0
  6. #define PARAM_LUMINOUS_DARK_COLOR_SHIFT 2.0
  7. #define PARAM_SHADOW_BRIGHTNESS 3.0
  8. #define PARAM_SHADOW_DETAIL_SCALE 4.0
  9.  
  10. // ============================================
  11. // COLOR GRADING (5-12)
  12. // ============================================
  13. #define PARAM_RETRO_COLOR_SATURATION 5.0
  14. #define PARAM_RETRO_COLOR_VIBRANCY 6.0  
  15. #define PARAM_RETRO_COLOR_SHIFT_HUE 7.0
  16. #define PARAM_CONTRAST_BOOST 8.0
  17. #define PARAM_COLOR_BANDS 9.0
  18. #define PARAM_COLOR_BLEED 10.0
  19. #define PARAM_COLOR_LUT_MIX 11.0
  20. #define PARAM_SHADOW_LIFT_STRENGTH 12.0
  21.  
  22. // ============================================
  23. // BLOOM & GLOW SETTINGS (13-22)
  24. // ============================================
  25. #define PARAM_BLOOM_TINT_R 13.0
  26. #define PARAM_BLOOM_TINT_G 14.0
  27. #define PARAM_BLOOM_TINT_B 15.0
  28. #define PARAM_HALATION_STRENGTH 16.0
  29. #define PARAM_EDGE_GLOW_R 17.0
  30. #define PARAM_EDGE_GLOW_G 18.0
  31. #define PARAM_EDGE_GLOW_B 19.0
  32. #define PARAM_EDGE_GLOW_STRENGTH 20.0
  33. #define PARAM_EDGE_GLOW_THRESHOLD 21.0
  34. #define PARAM_VIGNETTE_STRENGTH 22.0
  35.  
  36. // ============================================
  37. // LENS EFFECTS (23-31)
  38. // ============================================
  39. #define PARAM_CHROMATIC_SHIFT 23.0
  40. #define PARAM_LENS_DISTORTION_STRENGTH 24.0
  41. #define PARAM_LIGHT_LEAK_POS_X 25.0
  42. #define PARAM_LIGHT_LEAK_POS_Y 26.0
  43. #define PARAM_LIGHT_LEAK_COLOR_R 27.0
  44. #define PARAM_LIGHT_LEAK_COLOR_G 28.0
  45. #define PARAM_LIGHT_LEAK_COLOR_B 29.0
  46. #define PARAM_LIGHT_LEAK_STRENGTH 30.0
  47. #define PARAM_LIGHT_LEAK_FALLOFF 31.0
  48.  
  49. // ============================================
  50. // FILM GRAIN & TEXTURE (32-39)
  51. // ============================================
  52. #define PARAM_GRAIN_AMOUNT 32.0
  53. #define PARAM_PAINT_TEXTURE 33.0
  54. #define PARAM_TEXTURE_STYLE 34.0
  55. #define PARAM_TEXTURE_SCALE 35.0
  56. #define PARAM_TEXTURE_VARIATION 36.0
  57. #define PARAM_TEXTURE_ROUGHNESS 37.0
  58. #define PARAM_SCANLINE_STRENGTH 38.0
  59. #define PARAM_SCANLINE_FREQUENCY 39.0
  60.  
  61. // ============================================
  62. // VINTAGE HAZE EFFECTS (40-45)
  63. // ============================================
  64. #define PARAM_VINTAGE_HAZE_STRENGTH 40.0
  65. #define PARAM_VINTAGE_HAZE_COLOR_R 41.0
  66. #define PARAM_VINTAGE_HAZE_COLOR_G 42.0
  67. #define PARAM_VINTAGE_HAZE_COLOR_B 43.0
  68. #define PARAM_VINTAGE_HAZE_DESAT 44.0
  69. #define PARAM_VINTAGE_HAZE_HIGHLIGHT_DESAT 45.0
  70.  
  71. // ============================================
  72. // REALITY GLITCH EFFECTS (46-57)
  73. // ============================================
  74. #define PARAM_GLITCH_PROBABILITY 46.0
  75. #define PARAM_GLITCH_INTENSITY 47.0
  76. #define PARAM_GLITCH_DURATION 48.0
  77. #define PARAM_STATIC_PROBABILITY 49.0
  78. #define PARAM_STATIC_INTENSITY 50.0
  79. #define PARAM_STATIC_DURATION 51.0
  80. #define PARAM_STATIC_SCAN_SPEED 52.0
  81. #define PARAM_CLAW_PROBABILITY 53.0
  82. #define PARAM_CLAW_INTENSITY 54.0
  83. #define PARAM_CLAW_DURATION 55.0
  84. #define PARAM_CLAW_TEAR_COUNT 56.0
  85. #define PARAM_PSYCHEDELIC_INTENSITY 57.0
  86. #define PARAM_PSYCHEDELIC_SPEED 58.0
  87.  
  88. // ============================================
  89. // OIL PAINTING EFFECTS (59-64)
  90. // ============================================
  91. #define PARAM_OIL_PAINT_STRENGTH 59.0
  92. #define PARAM_OIL_PAINT_RADIUS 60.0
  93. #define PARAM_OIL_PAINT_BRUSH_SCALE 61.0
  94. #define PARAM_OIL_PAINT_THRESHOLD 62.0
  95. #define PARAM_OIL_PAINT_DIRECTIONAL 63.0
  96. #define PARAM_OIL_PAINT_MIX 64.0
  97.  
  98. // ============================================
  99. // ATMOSPHERIC PERSPECTIVE (65-71)
  100. // ============================================
  101. #define PARAM_ATMOSPHERE_STRENGTH 65.0
  102. #define PARAM_ATMOSPHERE_START_DISTANCE 66.0
  103. #define PARAM_ATMOSPHERE_DENSITY 67.0
  104. #define PARAM_ATMOSPHERE_SATURATION_LOSS 68.0
  105. #define PARAM_ATMOSPHERE_COLOR_SHIFT 69.0
  106. #define PARAM_ATMOSPHERE_DETAIL_LOSS 70.0
  107. #define PARAM_ATMOSPHERE_USE_SKY_COLOR 71.0
  108.  
  109. // ============================================
  110. // EXPOSURE & TONE CONTROLS (72-77)
  111. // ============================================
  112. #define PARAM_BRIGHTNESS 72.0
  113. #define PARAM_EXPOSURE 73.0
  114. #define PARAM_GAMMA 74.0
  115. #define PARAM_HIGHLIGHTS 75.0
  116. #define PARAM_SHADOWS 76.0
  117. #define PARAM_TONEMAP_TYPE 77.0
  118.  
  119. // ============================================
  120. // COLOR BALANCE (78-84)
  121. // ============================================
  122. #define PARAM_TEMPERATURE 78.0
  123. #define PARAM_TINT 79.0
  124. #define PARAM_BLACK_POINT 80.0
  125. #define PARAM_WHITE_POINT 81.0
  126. #define PARAM_SHARPNESS 82.0
  127. #define PARAM_CLARITY 83.0
  128. #define PARAM_SELECTIVE_DESAT_STRENGTH 84.0
  129.  
  130. // ============================================
  131. // HSL PER CHANNEL (85-93)
  132. // ============================================
  133. #define PARAM_RED_HUE 85.0
  134. #define PARAM_RED_SATURATION 86.0
  135. #define PARAM_RED_LIGHTNESS 87.0
  136. #define PARAM_GREEN_HUE 88.0
  137. #define PARAM_GREEN_SATURATION 89.0
  138. #define PARAM_GREEN_LIGHTNESS 90.0
  139. #define PARAM_BLUE_HUE 91.0
  140. #define PARAM_BLUE_SATURATION 92.0
  141. #define PARAM_BLUE_LIGHTNESS 93.0
  142.  
  143. // ============================================
  144. // NOISE & DETAIL (94-95)
  145. // ============================================
  146. #define PARAM_NOISE_REDUCTION 94.0
  147. #define PARAM_DETAIL_ENHANCEMENT 95.0
  148.  
  149. // ============================================
  150. // AMBIENT LIGHT PARAMETERS (96-110)
  151. // ============================================
  152. #define PARAM_AL_DEBUG 96.0
  153. #define PARAM_AL_INT 97.0
  154. #define PARAM_AL_THRESHOLD 98.0
  155. #define PARAM_AL_DITHER 99.0
  156. #define PARAM_AL_ADAPTATION 100.0
  157. #define PARAM_AL_ADAPT 101.0
  158. #define PARAM_AL_ADAPT_BASE_MULT 102.0
  159. #define PARAM_AL_ADAPT_BASE_BLACKLVL 103.0
  160. #define PARAM_AL_DIRT 104.0
  161. #define PARAM_AL_VIBRANCE 105.0
  162. #define PARAM_AL_ADAPTIVE 106.0
  163. #define PARAM_AL_DIRT_INT 107.0
  164. #define PARAM_AL_DIRT_OV_INT 108.0
  165. #define PARAM_AL_LENS_THRESH 109.0
  166. #define PARAM_AL_LENS_INT 110.0
  167.  
  168. // ============================================
  169. // PAINTING AGING EFFECT (111-121)
  170. // ============================================
  171. #define PARAM_AGING_STRENGTH 111.0
  172. #define PARAM_EDGE_WEAR 112.0
  173. #define PARAM_AGING_COLOR_R 113.0
  174. #define PARAM_AGING_COLOR_G 114.0
  175. #define PARAM_AGING_COLOR_B 115.0
  176. #define PARAM_BORDER_EDGE 116.0
  177. #define PARAM_INTERIOR_AGING 117.0
  178. #define PARAM_STAIN_DENSITY 118.0
  179. #define PARAM_CREASE_INTENSITY 119.0
  180. #define PARAM_FOXING_INTENSITY 120.0
  181. #define PARAM_AGING_OPACITY 121.0
  182.  
  183. // ============================================
  184. // WIND EFFECTS (122-127)
  185. // ============================================
  186. #define PARAM_WIND_STRENGTH 122.0
  187. #define PARAM_WIND_SPEED 123.0
  188. #define PARAM_WIND_TURBULENCE 124.0
  189. #define PARAM_WIND_DIRECTION_X 125.0
  190. #define PARAM_WIND_DIRECTION_Y 126.0
  191. #define PARAM_WIND_PULSE_SCALE 127.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement