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
This commit is contained in:
Paul Gofman 2024-12-05 13:42:22 -06:00
parent e1554d408b
commit 80287ab0cf

View File

@ -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;
}