1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-14 04:29:15 +01:00

[dxvk] Log sparse features

This commit is contained in:
Philip Rebohle 2022-08-19 16:48:58 +02:00
parent 6e6d64b83e
commit 71c9c4a5cc

View File

@ -795,17 +795,28 @@ namespace dxvk {
"\n shaderFloat64 : ", features.core.features.shaderFloat64 ? "1" : "0",
"\n shaderInt64 : ", features.core.features.shaderInt64 ? "1" : "0",
"\n variableMultisampleRate : ", features.core.features.variableMultisampleRate ? "1" : "0",
"\n shaderResourceResidency : ", features.core.features.shaderResourceResidency ? "1" : "0",
"\n shaderResourceMinLod : ", features.core.features.shaderResourceMinLod ? "1" : "0",
"\n sparseBinding : ", features.core.features.sparseBinding ? "1" : "0",
"\n sparseResidencyBuffer : ", features.core.features.sparseResidencyBuffer ? "1" : "0",
"\n sparseResidencyImage2D : ", features.core.features.sparseResidencyImage2D ? "1" : "0",
"\n sparseResidencyImage3D : ", features.core.features.sparseResidencyImage3D ? "1" : "0",
"\n sparseResidency2Samples : ", features.core.features.sparseResidency2Samples ? "1" : "0",
"\n sparseResidency4Samples : ", features.core.features.sparseResidency4Samples ? "1" : "0",
"\n sparseResidency8Samples : ", features.core.features.sparseResidency8Samples ? "1" : "0",
"\n sparseResidency16Samples : ", features.core.features.sparseResidency16Samples ? "1" : "0",
"\n sparseResidencyAliased : ", features.core.features.sparseResidencyAliased ? "1" : "0",
"\nVulkan 1.1",
"\n shaderDrawParameters : ", features.vk11.shaderDrawParameters,
"\nVulkan 1.2",
"\n samplerMirrorClampToEdge : ", features.vk12.samplerMirrorClampToEdge,
"\n drawIndirectCount : ", features.vk12.drawIndirectCount,
"\n samplerFilterMinmax : ", features.vk12.samplerFilterMinmax,
"\n hostQueryReset : ", features.vk12.hostQueryReset,
"\n timelineSemaphore : ", features.vk12.timelineSemaphore,
"\n bufferDeviceAddress : ", features.vk12.bufferDeviceAddress,
"\n shaderOutputViewportIndex : ", features.vk12.shaderOutputViewportIndex,
"\n shaderOutputLayer : ", features.vk12.shaderOutputLayer,
"\n timelineSemaphore : ", features.vk12.timelineSemaphore,
"\nVulkan 1.3",
"\n robustImageAccess : ", features.vk13.robustImageAccess,
"\n pipelineCreationCacheControl : ", features.vk13.pipelineCreationCacheControl,