rendervulkan: Don't use 10-bit format for VR session

OpenVR has a fit and displays it all whacky mode.

Come back to this later potentially.
This commit is contained in:
Joshua Ashton 2023-05-16 01:50:42 +00:00
parent 61121e206b
commit 6586d5e009

View file

@ -3027,7 +3027,8 @@ bool vulkan_make_output( VkSurfaceKHR surface )
if ( BIsVRSession() )
{
pOutput->outputFormat = VK_FORMAT_A2B10G10R10_UNORM_PACK32;
//pOutput->outputFormat = VK_FORMAT_A2B10G10R10_UNORM_PACK32;
pOutput->outputFormat = VK_FORMAT_B8G8R8A8_UNORM;
vulkan_make_output_images( pOutput );
}
else if ( BIsNested() == true )