Closed lyd405121 closed 1 year ago
Glad you like the tech, thanks :). This error looks to be coming from mini_samples/dmm_displacement/src/dmm_raytrace.cpp
if(!app->getContext()->hasDeviceExtension(VK_NV_DISPLACEMENT_MICROMAP_EXTENSION_NAME))
{
LOGE("ERROR: Micro-Mesh displacement not supported");
exit(1);
}
This would happen if the driver is missing VK_NV_displacement_micromap
support. Can you try updating to the latest vulkan beta driver at https://developer.nvidia.com/vulkan-driver?
Glad you like the tech, thanks :). This error looks to be coming from
mini_samples/dmm_displacement/src/dmm_raytrace.cpp
if(!app->getContext()->hasDeviceExtension(VK_NV_DISPLACEMENT_MICROMAP_EXTENSION_NAME)) { LOGE("ERROR: Micro-Mesh displacement not supported"); exit(1); }
This would happen if the driver is missing
VK_NV_displacement_micromap
support. Can you try updating to the latest vulkan beta driver at https://developer.nvidia.com/vulkan-driver?
In theory other vendors could implement the extension as is, even if it is a vendor extension, but typically it needs a bit of a standardization process. Right now NVIDIA is the only vendor implementing it. Sites like vulkan.gpuinfo.org allow you to see what is available in the field.
In theory other vendors could implement the extension as is, even if it is a vendor extension, but typically it needs a bit of a standardization process. Right now NVIDIA is the only vendor implementing it. Sites like vulkan.gpuinfo.org allow you to see what is available in the field.
Thank you for your kind imformation :)
Description
More info
Background