Skip to content
This repository has been archived by the owner on Dec 28, 2020. It is now read-only.

Commit

Permalink
Vulkan seems to enforce robustBufferAccess.
Browse files Browse the repository at this point in the history
  • Loading branch information
abergmeier committed Nov 8, 2019
1 parent bb92907 commit 7366f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/broadcom/vulkan/v3dvk_physical_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ void v3dvk_GetPhysicalDeviceFeatures(
V3DVK_FROM_HANDLE(v3dvk_physical_device, pdevice, physicalDevice);

*pFeatures = (VkPhysicalDeviceFeatures) {
.robustBufferAccess = false,
.robustBufferAccess = true,
.fullDrawIndexUint32 = false,
.imageCubeArray = false,
.independentBlend = false,
Expand Down

0 comments on commit 7366f57

Please sign in to comment.