| 99 | } |
| 100 | |
| 101 | constexpr bool isDepthStencilFormat( PixelFormat fmt )noexcept |
| 102 | { |
| 103 | return isDepthFormat( fmt ) && isStencilFormat( fmt ); |
| 104 | } |
| 105 | |
| 106 | constexpr bool isDepthOrStencilFormat( PixelFormat fmt )noexcept |
| 107 | { |
no test coverage detected