Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent potential operator precedence confusion
The following are not the same: bMemoryLess && (allowMemoryless() ? TextureFlags::TilerMemoryless : 0) vs (bMemoryLess && allowMemoryless()) ? TextureFlags::TilerMemoryless : 0 Regardless of C++ operator rules, mark intent very explicit.
- Loading branch information