Skip to content

Commit

Permalink
vrclient: Remove FIXME for Vulkan textures in set_skybox_override_ini…
Browse files Browse the repository at this point in the history
…t().

Nothing needs to be done with those on the PE side.

CW-Bug-Id: #24553
  • Loading branch information
Paul Gofman committed Dec 5, 2024
1 parent e1554d4 commit 80287ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vrclient_x64/vrcompositor_manual.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 80287ab

Please sign in to comment.