| 58 | const uint64_t kAppID = 231313132; |
| 59 | |
| 60 | std::string resultToString(NVSDK_NGX_Result result) |
| 61 | { |
| 62 | char buf[1024]; |
| 63 | snprintf(buf, sizeof(buf), "(code: 0x%08x, info: %ls)", result, GetNGXResultAsString(result)); |
| 64 | buf[sizeof(buf) - 1] = '\0'; |
| 65 | return std::string(buf); |
| 66 | } |
| 67 | |
| 68 | #if FALCOR_HAS_VULKAN |
| 69 | VkImageAspectFlags getAspectMaskFromFormat(VkFormat format) |
no test coverage detected