@@ -71,9 +71,7 @@ static raw_ostream &operator<<(raw_ostream &OS,
71
71
return OS;
72
72
}
73
73
74
-
75
- static raw_ostream &operator <<(raw_ostream &OS,
76
- const SamplerFilter &Filter) {
74
+ static raw_ostream &operator <<(raw_ostream &OS, const SamplerFilter &Filter) {
77
75
switch (Filter) {
78
76
case SamplerFilter::MinMagMipPoint:
79
77
OS << " MinMagMipPoint" ;
@@ -243,7 +241,6 @@ static raw_ostream &operator<<(raw_ostream &OS,
243
241
return OS;
244
242
}
245
243
246
-
247
244
static raw_ostream &operator <<(raw_ostream &OS,
248
245
const StaticBorderColor &BorderColor) {
249
246
switch (BorderColor) {
@@ -448,19 +445,16 @@ raw_ostream &operator<<(raw_ostream &OS, const RootDescriptor &Descriptor) {
448
445
}
449
446
450
447
raw_ostream &operator <<(raw_ostream &OS, const StaticSampler &Sampler) {
451
- OS << " StaticSampler(" << Sampler.Reg
452
- << " , filter = " << Sampler.Filter
448
+ OS << " StaticSampler(" << Sampler.Reg << " , filter = " << Sampler.Filter
453
449
<< " , addressU = " << Sampler.AddressU
454
450
<< " , addressV = " << Sampler.AddressV
455
451
<< " , addressW = " << Sampler.AddressW
456
452
<< " , mipLODBias = " << Sampler.MipLODBias
457
453
<< " , maxAnisotropy = " << Sampler.MaxAnisotropy
458
454
<< " , comparisonFunc = " << Sampler.CompFunc
459
455
<< " , borderColor = " << Sampler.BorderColor
460
- << " , minLOD = " << Sampler.MinLOD
461
- << " , maxLOD = " << Sampler.MaxLOD
462
- << " , space = " << Sampler.Space
463
- << " , visibility = " << Sampler.Visibility
456
+ << " , minLOD = " << Sampler.MinLOD << " , maxLOD = " << Sampler.MaxLOD
457
+ << " , space = " << Sampler.Space << " , visibility = " << Sampler.Visibility
464
458
<< " )" ;
465
459
return OS;
466
460
}
0 commit comments