mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-09 15:45:40 +12:00
Disable timeline semaphore features
This is an optional feature that can be supported conditionally later
This commit is contained in:
parent
8ace959d72
commit
da6f880128
1 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@ void RendererVK::initGraphicsContext(SDL_Window* window) {
|
|||
#if defined(__APPLE__)
|
||||
"VK_KHR_portability_subset",
|
||||
#endif
|
||||
VK_KHR_TIMELINE_SEMAPHORE_EXTENSION_NAME
|
||||
//VK_KHR_TIMELINE_SEMAPHORE_EXTENSION_NAME
|
||||
};
|
||||
deviceInfo.ppEnabledExtensionNames = deviceExtensions;
|
||||
deviceInfo.enabledExtensionCount = std::size(deviceExtensions);
|
||||
|
@ -140,7 +140,7 @@ void RendererVK::initGraphicsContext(SDL_Window* window) {
|
|||
auto& deviceFeatures = deviceFeatureChain.get<vk::PhysicalDeviceFeatures2>().features;
|
||||
|
||||
auto& deviceTimelineFeatures = deviceFeatureChain.get<vk::PhysicalDeviceTimelineSemaphoreFeatures>();
|
||||
deviceTimelineFeatures.timelineSemaphore = true;
|
||||
//deviceTimelineFeatures.timelineSemaphore = true;
|
||||
|
||||
deviceInfo.pNext = &deviceFeatureChain.get();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue