| 401 | } |
| 402 | |
| 403 | static uint32_t BitsPerPixel(nvrhi::Format format) |
| 404 | { |
| 405 | const FormatMapping& mapping = g_FormatMappings[static_cast<uint32_t>(format)]; |
| 406 | assert(mapping.nvrhiFormat == format); |
| 407 | |
| 408 | return mapping.bitsPerPixel; |
| 409 | } |
| 410 | |
| 411 | static void GetSurfaceInfo(size_t width, |
| 412 | size_t height, |
no outgoing calls
no test coverage detected