File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -422,19 +422,18 @@ uint8_t GmmLib::PlatformInfoGen12::ValidateCCS(GMM_TEXTURE_INFO &Surf)
422
422
uint8_t GmmLib::PlatformInfoGen12::ValidateUnifiedAuxSurface (GMM_TEXTURE_INFO &Surf)
423
423
{
424
424
425
- if ((Surf.Flags .Gpu .UnifiedAuxSurface ) &&
426
- !( // --- Legitimate UnifiedAuxSurface Case ------------------------------------------
427
- Surf.Flags .Gpu .CCS &&
428
- (( Surf.MSAA .NumSamples <= 1 && (Surf.Flags .Gpu .RenderTarget || Surf.Flags .Gpu .Texture )) ||
429
- (( Surf.Flags .Gpu .Depth || Surf.Flags .Gpu .SeparateStencil || Surf.MSAA .NumSamples > 1 )) )))
425
+ if ((Surf.Flags .Gpu .UnifiedAuxSurface ) &&
426
+ !( // --- Legitimate UnifiedAuxSurface Case ------------------------------------------
427
+ ( Surf.Flags .Gpu .CCS &&
428
+ ( Surf.MSAA .NumSamples <= 1 && (Surf.Flags .Gpu .RenderTarget || Surf.Flags .Gpu .Texture ) )) ||
429
+ (Surf.Flags .Gpu .Depth || Surf.Flags .Gpu .SeparateStencil || Surf.MSAA .NumSamples > 1 )))
430
430
{
431
431
GMM_ASSERTDPF (0 , " Invalid UnifiedAuxSurface usage!" );
432
432
return 0 ;
433
433
}
434
434
435
435
return 1 ;
436
436
}
437
-
438
437
// =============================================================================
439
438
//
440
439
// Function: CheckFmtDisplayDecompressible
You can’t perform that action at this time.
0 commit comments