Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "stdafx.h"
- #include "blender_lut.h"
- CBlender_lut::CBlender_lut() { description.CLS = 0; }
- CBlender_lut::~CBlender_lut() { }
- void CBlender_lut::Compile(CBlender_Compile& C)
- {
- IBlender::Compile(C);
- C.r_Pass("null", "lut", FALSE, FALSE, FALSE);
- C.r_Sampler_clf("s_image", r2_RT_generic0);
- C.r_Sampler_clf("s_lut_1", "ogse\\lut\\lut_1");
- C.r_Sampler_clf("s_lut_2", "ogse\\lut\\lut_2");
- C.r_Sampler_clf("s_lut_3", "ogse\\lut\\lut_3");
- C.r_Sampler_clf("s_lut_4", "ogse\\lut\\lut_4");
- C.r_Sampler_clf("s_lut_5", "ogse\\lut\\lut_5");
- C.r_End();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement