Closed edwarddavidbaker closed 3 years ago
Sorry about bringing this up again. This is a copy of issue https://github.com/intel/gmmlib/issues/78 . When building gmmlib in Chrome OS the following warning is present.
Source/GmmLib/Texture/GmmGen9Texture.cpp:595:46: warning: overlapping comparisons always evaluate to false [-Wtautological-overlap-compare] ((pTexInfo->MSAA.NumSamples == 8) && (pTexInfo->MSAA.NumSamples == 16)) && ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
MSAA.NumSamples can not be both 8 and 16 at the same time forcing the entire if() to always skip.
Thanks John! Fixed in https://github.com/intel/gmmlib/commit/d84606bd4bb603119c15e01e24af9920e27ef704 .
Sorry about bringing this up again. This is a copy of issue https://github.com/intel/gmmlib/issues/78 . When building gmmlib in Chrome OS the following warning is present.
MSAA.NumSamples can not be both 8 and 16 at the same time forcing the entire if() to always skip.