[llvm-branch-commits] [llvm] [HLSL][RootSignature] Implement serialization of remaining Root Elements (PR #143198)

Finn Plummer via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Fri Jun 6 13:54:44 PDT 2025


================
@@ -71,6 +71,199 @@ static raw_ostream &operator<<(raw_ostream &OS,
   return OS;
 }
 
+static raw_ostream &operator<<(raw_ostream &OS, const SamplerFilter &Filter) {
+  switch (Filter) {
+  case SamplerFilter::MinMagMipPoint:
+    OS << "MinMagMipPoint";
----------------
inbelic wrote:

Yes! Thank you

https://github.com/llvm/llvm-project/pull/143198


More information about the llvm-branch-commits mailing list