| 48 | /// <param name="format">The Pixel Format.</param> |
| 49 | /// <returns><c>true</c> if the specified <see cref="PixelFormat"/> has alpha; otherwise, <c>false</c>.</returns> |
| 50 | API_FUNCTION() FORCE_INLINE static bool HasAlpha(const PixelFormat format) |
| 51 | { |
| 52 | return AlphaSizeInBits(format) != 0; |
| 53 | } |
| 54 | |
| 55 | /// <summary> |
| 56 | /// Determines whether the specified <see cref="PixelFormat"/> is depth stencil. |
no outgoing calls
no test coverage detected