| 239 | } |
| 240 | |
| 241 | LLGL_EXPORT bool IsDepthStencilFormat(const Format format) |
| 242 | { |
| 243 | const auto& formatAttribs = GetFormatAttribs(format); |
| 244 | return ((formatAttribs.flags & (FormatFlags::HasDepth | FormatFlags::HasStencil)) != 0); |
| 245 | } |
| 246 | |
| 247 | LLGL_EXPORT bool IsDepthStencilFormat(const ImageFormat imageFormat) |
| 248 | { |
no outgoing calls
no test coverage detected