@@ -17,6 +17,24 @@ public void AlphaBackground()
17
17
TestFilter ( "alpha_background.hlsl" ) ;
18
18
}
19
19
20
+ [ TestMethod ]
21
+ public void AlphaTest ( )
22
+ {
23
+ TestFilter ( "alpha_test.hlsl" ) ;
24
+ }
25
+
26
+ [ TestMethod ]
27
+ public void AlphaTestPreprocessing ( )
28
+ {
29
+ TestFilter ( "alpha_test_preprocessing.hlsl" ) ;
30
+ }
31
+
32
+ [ TestMethod ]
33
+ public void Bilateral ( )
34
+ {
35
+ TestFilter ( "bilateral.hlsl" , FilterLoader . TargetType . Tex2D ) ;
36
+ }
37
+
20
38
[ TestMethod ]
21
39
public void Blur ( )
22
40
{
@@ -36,57 +54,57 @@ public void Denoise()
36
54
}
37
55
38
56
[ TestMethod ]
39
- public void Enhance ( )
57
+ public void Dithering ( )
40
58
{
41
- TestFilter ( "enhance .hlsl" , FilterLoader . TargetType . Tex2D ) ;
59
+ TestFilter ( "dithering .hlsl" , FilterLoader . TargetType . Tex2D ) ;
42
60
}
43
61
44
62
[ TestMethod ]
45
- public void Gamma ( )
63
+ public void Divergent ( )
46
64
{
47
- TestFilter ( "gamma .hlsl" ) ;
65
+ TestFilter ( "divergent .hlsl" , FilterLoader . TargetType . Tex2D ) ;
48
66
}
49
67
50
68
[ TestMethod ]
51
- public void Heatmap ( )
69
+ public void Enhance ( )
52
70
{
53
- TestFilter ( "heatmap .hlsl" ) ;
71
+ TestFilter ( "enhance .hlsl" , FilterLoader . TargetType . Tex2D ) ;
54
72
}
55
73
56
74
[ TestMethod ]
57
- public void Highlight ( )
75
+ public void FixAlpha ( )
58
76
{
59
- TestFilter ( "highlight .hlsl" ) ;
77
+ TestFilter ( "fix_alpha .hlsl" , FilterLoader . TargetType . Tex2D ) ;
60
78
}
61
79
62
80
[ TestMethod ]
63
- public void Luminance ( )
81
+ public void FlipCubemap ( )
64
82
{
65
- TestFilter ( "luminance .hlsl" ) ;
83
+ TestFilter ( "flip_cubemap .hlsl" , FilterLoader . TargetType . Tex2D ) ;
66
84
}
67
85
68
86
[ TestMethod ]
69
- public void Median ( )
87
+ public void Gamma ( )
70
88
{
71
- TestFilter ( "median .hlsl" ) ;
89
+ TestFilter ( "gamma .hlsl" ) ;
72
90
}
73
91
74
92
[ TestMethod ]
75
- public void Mirror ( )
93
+ public void GuidedBilateral ( )
76
94
{
77
- TestFilter ( "mirror .hlsl" ) ;
95
+ TestFilter ( "guided_bilateral .hlsl" , FilterLoader . TargetType . Tex2D ) ;
78
96
}
79
97
80
98
[ TestMethod ]
81
- public void Quantile ( )
99
+ public void HeatDistribution ( )
82
100
{
83
- TestFilter ( "quantile .hlsl" , FilterLoader . TargetType . Tex2D ) ;
101
+ TestFilter ( "heat_distribution .hlsl" , FilterLoader . TargetType . Tex2D ) ;
84
102
}
85
103
86
104
[ TestMethod ]
87
- public void Silhouette ( )
105
+ public void Heatmap ( )
88
106
{
89
- TestFilter ( "silhouette .hlsl" , FilterLoader . TargetType . Tex2D ) ;
107
+ TestFilter ( "heatmap .hlsl" ) ;
90
108
}
91
109
92
110
[ TestMethod ]
@@ -96,35 +114,53 @@ public void HeightToNormal()
96
114
}
97
115
98
116
[ TestMethod ]
99
- public void Bilateral ( )
117
+ public void Highlight ( )
100
118
{
101
- TestFilter ( "bilateral .hlsl" , FilterLoader . TargetType . Tex2D ) ;
119
+ TestFilter ( "highlight .hlsl" ) ;
102
120
}
103
121
104
122
[ TestMethod ]
105
- public void GuidedBilateral ( )
123
+ public void Luminance ( )
106
124
{
107
- TestFilter ( "guided_bilateral .hlsl" , FilterLoader . TargetType . Tex2D ) ;
125
+ TestFilter ( "luminance .hlsl" ) ;
108
126
}
109
127
110
128
[ TestMethod ]
111
- public void Divergent ( )
129
+ public void Median ( )
112
130
{
113
- TestFilter ( "divergent .hlsl" ) ;
131
+ TestFilter ( "median .hlsl" ) ;
114
132
}
115
133
116
134
[ TestMethod ]
117
- public void Dithering ( )
135
+ public void Mirror ( )
118
136
{
119
- TestFilter ( "dithering .hlsl" , FilterLoader . TargetType . Tex2D ) ;
137
+ TestFilter ( "mirror .hlsl" ) ;
120
138
}
121
139
122
140
[ TestMethod ]
123
- public void HeatDistribution ( )
141
+ public void MovePixels ( )
124
142
{
125
- TestFilter ( "heat_distribution.hlsl" , FilterLoader . TargetType . Tex2D ) ;
143
+ TestFilter ( "move_pixels.hlsl" , FilterLoader . TargetType . Tex2D ) ;
144
+ }
145
+
146
+ [ TestMethod ]
147
+ public void Quantile ( )
148
+ {
149
+ TestFilter ( "quantile.hlsl" , FilterLoader . TargetType . Tex2D ) ;
150
+ }
151
+
152
+ [ TestMethod ]
153
+ public void Silhouette ( )
154
+ {
155
+ TestFilter ( "silhouette.hlsl" , FilterLoader . TargetType . Tex2D ) ;
126
156
}
127
157
158
+
159
+
160
+
161
+
162
+
163
+
128
164
private void TestFilter ( string name )
129
165
{
130
166
TestFilter ( name , FilterLoader . TargetType . Tex2D ) ;
0 commit comments