mirror of
https://github.com/86Box/86Box.git
synced 2025-01-23 01:31:51 -05:00
Fix darkened rendering in Vulkan
This commit is contained in:
parent
762a5f1de9
commit
a559684e7c
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ bool VulkanRenderer2::createTexture()
|
|||
QVulkanFunctions *f = m_window->vulkanInstance()->functions();
|
||||
VkDevice dev = m_window->device();
|
||||
|
||||
m_texFormat = VK_FORMAT_B8G8R8A8_SRGB;
|
||||
m_texFormat = VK_FORMAT_B8G8R8A8_UNORM;
|
||||
|
||||
// Now we can either map and copy the image data directly, or have to go
|
||||
// through a staging buffer to copy and convert into the internal optimal
|
||||
|
|
Loading…
Reference in a new issue