From 80287ab0cf2bc8052ef286dc853d03f625b37cc0 Mon Sep 17 00:00:00 2001 From: Paul Gofman Date: Thu, 5 Dec 2024 13:42:22 -0600 Subject: [PATCH] vrclient: Remove FIXME for Vulkan textures in set_skybox_override_init(). Nothing needs to be done with those on the PE side. CW-Bug-Id: #24553 --- vrclient_x64/vrcompositor_manual.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vrclient_x64/vrcompositor_manual.c b/vrclient_x64/vrcompositor_manual.c index e34d5c23..64c5f710 100644 --- a/vrclient_x64/vrcompositor_manual.c +++ b/vrclient_x64/vrcompositor_manual.c @@ -430,7 +430,8 @@ static const w_Texture_t *set_skybox_override_init( const w_Texture_t *textures, if (textures[0].eType == TextureType_DirectX) return set_skybox_override_d3d11_init( textures, count, state ); - FIXME( "Conversion for type %u is not supported.\n", textures[0].eType ); + if (textures[0].eType != TextureType_Vulkan) + FIXME( "Conversion for type %u is not supported.\n", textures[0].eType ); return textures; }