From 60a45d33b6a9f5f3e3e2dd51e67ff41deacf9d46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3zef=20Kucia?= Date: Mon, 10 Sep 2018 18:09:19 +0200 Subject: [PATCH] vrclient/dxvk: Add FIXME() for unhandled flags. --- vrclient_x64/vrclient_x64/vrclient_main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vrclient_x64/vrclient_x64/vrclient_main.c b/vrclient_x64/vrclient_x64/vrclient_main.c index 393c3fda..90398d88 100644 --- a/vrclient_x64/vrclient_x64/vrclient_main.c +++ b/vrclient_x64/vrclient_x64/vrclient_main.c @@ -597,6 +597,9 @@ static EVRCompositorError ivrcompositor_submit_dxvk( vkdata.m_nFormat = image_info.format; vkdata.m_nSampleCount = image_info.samples; + if (flags & (Submit_TextureWithPose | Submit_TextureWithDepth)) + FIXME("Unhandled flags %#x.\n", flags & (Submit_TextureWithPose | Submit_TextureWithDepth)); + vktexture = *texture; vktexture.handle = &vkdata; vktexture.eType = TextureType_Vulkan;