Skip to content

Commit

Permalink
Disabled Vulkan features to be compatible with Radeon 560
Browse files Browse the repository at this point in the history
  • Loading branch information
corporateshark committed Jul 24, 2023
1 parent c4ff2cf commit a9570ca
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/igl/vulkan/VulkanContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,6 @@ lvk::Result VulkanContext::initContext(const HWDeviceDesc& desc) {
.depthBiasClamp = VK_TRUE,
.fillModeNonSolid = VK_TRUE,
.textureCompressionBC = VK_TRUE,
.shaderInt16 = VK_TRUE,
};
VkPhysicalDeviceVulkan11Features deviceFeatures11 = {
.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_FEATURES,
Expand All @@ -508,7 +507,6 @@ lvk::Result VulkanContext::initContext(const HWDeviceDesc& desc) {
VkPhysicalDeviceVulkan12Features deviceFeatures12 = {
.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_FEATURES,
.pNext = &deviceFeatures11,
.shaderFloat16 = VK_TRUE,
.descriptorIndexing = VK_TRUE,
.shaderSampledImageArrayNonUniformIndexing = VK_TRUE,
.descriptorBindingSampledImageUpdateAfterBind = VK_TRUE,
Expand All @@ -520,7 +518,6 @@ lvk::Result VulkanContext::initContext(const HWDeviceDesc& desc) {
.uniformBufferStandardLayout = VK_TRUE,
.timelineSemaphore = VK_TRUE,
.bufferDeviceAddress = VK_TRUE,
.bufferDeviceAddressCaptureReplay = VK_TRUE,
};
VkPhysicalDeviceVulkan13Features deviceFeatures13 = {
.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_3_FEATURES,
Expand Down

0 comments on commit a9570ca

Please sign in to comment.