Advertisement
Guest User

Untitled

a guest
Apr 9th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. #include "stdafx.h"
  2.  
  3. #include "blender_lut.h"
  4.  
  5. CBlender_lut::CBlender_lut() { description.CLS = 0; }
  6. CBlender_lut::~CBlender_lut() { }
  7.  
  8. void CBlender_lut::Compile(CBlender_Compile& C)
  9. {
  10. IBlender::Compile(C);
  11.  
  12. C.r_Pass("null", "lut", FALSE, FALSE, FALSE);
  13. C.r_Sampler_clf("s_image", r2_RT_generic0);
  14.  
  15. C.r_Sampler_clf("s_lut_1", "ogse\\lut\\lut_1");
  16. C.r_Sampler_clf("s_lut_2", "ogse\\lut\\lut_2");
  17. C.r_Sampler_clf("s_lut_3", "ogse\\lut\\lut_3");
  18. C.r_Sampler_clf("s_lut_4", "ogse\\lut\\lut_4");
  19. C.r_Sampler_clf("s_lut_5", "ogse\\lut\\lut_5");
  20. C.r_End();
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement