@@ -34,7 +34,7 @@ void CBlender_combine::Compile(CBlender_Compile& C)
3434 C.r_End ();
3535 break ;
3636 case 1 : // aa-edge-detection + AA :)
37- C.r_Pass (" stub_notransform_aa_AA" , " combine_2_AA" , nullptr , false , FALSE );
37+ C.r_Pass (" stub_notransform_aa_AA" , " combine_2_AA" , FALSE , FALSE , FALSE );
3838 C.r_Sampler_rtf (" s_position" , r2_RT_P);
3939 C.r_Sampler_rtf (" s_normal" , r2_RT_N);
4040 C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -44,7 +44,7 @@ void CBlender_combine::Compile(CBlender_Compile& C)
4444 break ;
4545 case 2 : // non-AA
4646 // Can use simpler VS (need only Tex0)
47- C.r_Pass (" stub_notransform_aa_AA" , " combine_2_NAA" , nullptr , false , FALSE );
47+ C.r_Pass (" stub_notransform_aa_AA" , " combine_2_NAA" , FALSE , FALSE , FALSE );
4848 C.r_Sampler_rtf (" s_position" , r2_RT_P);
4949 C.r_Sampler_rtf (" s_normal" , r2_RT_N);
5050 C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -53,7 +53,7 @@ void CBlender_combine::Compile(CBlender_Compile& C)
5353 C.r_End ();
5454 break ;
5555 case 3 : // aa-edge-detection + AA :) + DISTORTION
56- C.r_Pass (" stub_notransform_aa_AA" , " combine_2_AA_D" , nullptr , false , FALSE );
56+ C.r_Pass (" stub_notransform_aa_AA" , " combine_2_AA_D" , FALSE , FALSE , FALSE );
5757 C.r_Sampler_rtf (" s_position" , r2_RT_P);
5858 C.r_Sampler_rtf (" s_normal" , r2_RT_N);
5959 C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -63,7 +63,7 @@ void CBlender_combine::Compile(CBlender_Compile& C)
6363 break ;
6464 case 4 : // non-AA + DISTORTION
6565 // Can use simpler VS (need only Tex0)
66- C.r_Pass (" stub_notransform_aa_AA" , " combine_2_NAA_D" , nullptr , false , FALSE );
66+ C.r_Pass (" stub_notransform_aa_AA" , " combine_2_NAA_D" , FALSE , FALSE , FALSE );
6767 C.r_Sampler_rtf (" s_position" , r2_RT_P);
6868 C.r_Sampler_rtf (" s_normal" , r2_RT_N);
6969 C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -113,7 +113,7 @@ void CBlender_combine_msaa::Compile(CBlender_Compile& C)
113113 C.r_End ();
114114 break ;
115115 case 1 : // aa-edge-detection + AA :)
116- C.r_Pass (" stub_notransform_aa_AA" , " combine_2_AA" , nullptr , false , FALSE );
116+ C.r_Pass (" stub_notransform_aa_AA" , " combine_2_AA" , FALSE , FALSE , FALSE );
117117 C.r_Sampler_rtf (" s_position" , r2_RT_P);
118118 C.r_Sampler_rtf (" s_normal" , r2_RT_N);
119119 C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -123,7 +123,7 @@ void CBlender_combine_msaa::Compile(CBlender_Compile& C)
123123 break ;
124124 case 2 : // non-AA
125125 // Can use simpler VS (need only Tex0)
126- C.r_Pass (" stub_notransform_aa_AA" , " combine_2_NAA" , nullptr , false , TRUE );
126+ C.r_Pass (" stub_notransform_aa_AA" , " combine_2_NAA" , FALSE , FALSE , TRUE );
127127 C.r_Sampler_rtf (" s_position" , r2_RT_P);
128128 C.r_Sampler_rtf (" s_normal" , r2_RT_N);
129129 C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -132,7 +132,7 @@ void CBlender_combine_msaa::Compile(CBlender_Compile& C)
132132 C.r_End ();
133133 break ;
134134 case 3 : // aa-edge-detection + AA :) + DISTORTION
135- C.r_Pass (" stub_notransform_aa_AA" , " combine_2_AA_D" , nullptr , false , FALSE );
135+ C.r_Pass (" stub_notransform_aa_AA" , " combine_2_AA_D" , FALSE , FALSE , FALSE );
136136 C.r_Sampler_rtf (" s_position" , r2_RT_P);
137137 C.r_Sampler_rtf (" s_normal" , r2_RT_N);
138138 C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -142,7 +142,7 @@ void CBlender_combine_msaa::Compile(CBlender_Compile& C)
142142 break ;
143143 case 4 : // non-AA + DISTORTION
144144 // Can use simpler VS (need only Tex0)
145- C.r_Pass (" stub_notransform_aa_AA" , " combine_2_NAA_D" , nullptr , false , TRUE );
145+ C.r_Pass (" stub_notransform_aa_AA" , " combine_2_NAA_D" , FALSE , FALSE , TRUE );
146146 C.r_Sampler_rtf (" s_position" , r2_RT_P);
147147 C.r_Sampler_rtf (" s_normal" , r2_RT_N);
148148 C.r_Sampler_clf (" s_image" , r2_RT_generic0);
0 commit comments