We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 787a211 commit 0610f9eCopy full SHA for 0610f9e
Motely/filters/PassthroughFilterDesc.cs
@@ -0,0 +1,21 @@
1
+using System.Runtime.CompilerServices;
2
+using System.Runtime.Intrinsics;
3
+
4
+namespace Motely;
5
6
+public struct PassthroughFilterDesc() : IMotelySeedFilterDesc<PassthroughFilterDesc.PassthroughFilter>
7
+{
8
9
+ public PassthroughFilter CreateFilter(ref MotelyFilterCreationContext ctx)
10
+ {
11
+ return new PassthroughFilter();
12
+ }
13
14
+ public struct PassthroughFilter() : IMotelySeedFilter
15
16
+ public readonly VectorMask Filter(ref MotelyVectorSearchContext searchContext)
17
18
+ return VectorMask.AllBitsSet;
19
20
21
+}
0 commit comments