@@ -34,7 +34,7 @@ void CBlender_combine::Compile(CBlender_Compile& C)
34
34
C.r_End ();
35
35
break ;
36
36
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 );
38
38
C.r_Sampler_rtf (" s_position" , r2_RT_P);
39
39
C.r_Sampler_rtf (" s_normal" , r2_RT_N);
40
40
C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -44,7 +44,7 @@ void CBlender_combine::Compile(CBlender_Compile& C)
44
44
break ;
45
45
case 2 : // non-AA
46
46
// 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 );
48
48
C.r_Sampler_rtf (" s_position" , r2_RT_P);
49
49
C.r_Sampler_rtf (" s_normal" , r2_RT_N);
50
50
C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -53,7 +53,7 @@ void CBlender_combine::Compile(CBlender_Compile& C)
53
53
C.r_End ();
54
54
break ;
55
55
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 );
57
57
C.r_Sampler_rtf (" s_position" , r2_RT_P);
58
58
C.r_Sampler_rtf (" s_normal" , r2_RT_N);
59
59
C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -63,7 +63,7 @@ void CBlender_combine::Compile(CBlender_Compile& C)
63
63
break ;
64
64
case 4 : // non-AA + DISTORTION
65
65
// 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 );
67
67
C.r_Sampler_rtf (" s_position" , r2_RT_P);
68
68
C.r_Sampler_rtf (" s_normal" , r2_RT_N);
69
69
C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -113,7 +113,7 @@ void CBlender_combine_msaa::Compile(CBlender_Compile& C)
113
113
C.r_End ();
114
114
break ;
115
115
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 );
117
117
C.r_Sampler_rtf (" s_position" , r2_RT_P);
118
118
C.r_Sampler_rtf (" s_normal" , r2_RT_N);
119
119
C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -123,7 +123,7 @@ void CBlender_combine_msaa::Compile(CBlender_Compile& C)
123
123
break ;
124
124
case 2 : // non-AA
125
125
// 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 );
127
127
C.r_Sampler_rtf (" s_position" , r2_RT_P);
128
128
C.r_Sampler_rtf (" s_normal" , r2_RT_N);
129
129
C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -132,7 +132,7 @@ void CBlender_combine_msaa::Compile(CBlender_Compile& C)
132
132
C.r_End ();
133
133
break ;
134
134
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 );
136
136
C.r_Sampler_rtf (" s_position" , r2_RT_P);
137
137
C.r_Sampler_rtf (" s_normal" , r2_RT_N);
138
138
C.r_Sampler_clf (" s_image" , r2_RT_generic0);
@@ -142,7 +142,7 @@ void CBlender_combine_msaa::Compile(CBlender_Compile& C)
142
142
break ;
143
143
case 4 : // non-AA + DISTORTION
144
144
// 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 );
146
146
C.r_Sampler_rtf (" s_position" , r2_RT_P);
147
147
C.r_Sampler_rtf (" s_normal" , r2_RT_N);
148
148
C.r_Sampler_clf (" s_image" , r2_RT_generic0);
0 commit comments