Skip to content

Commit

Permalink
Disable bindless on Intel iGPUs
Browse files Browse the repository at this point in the history
  • Loading branch information
thr3343 committed Aug 25, 2024
1 parent b817ee6 commit d5b3fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/vulkanmod/vulkan/device/Device.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public Device(VkPhysicalDevice device) {
}


this.hasBindless = hasIndexedDescriptors & (vk12Properties.maxPerStageDescriptorUpdateAfterBindSamplers() > 65536 || properties.properties().limits().maxPerStageDescriptorSamplers() > 65536);
this.hasBindless = hasIndexedDescriptors & properties.properties().limits().maxPerStageDescriptorSamplers() > 65536;


final int subGroupStages = subgroupProperties.supportedStages();
Expand Down

0 comments on commit d5b3fde

Please sign in to comment.