Conor McCarthy : vkd3d: Change strip cut value FIXMEs to FIXME_ONCE.

Alexandre Julliard julliard at winehq.org
Wed Dec 15 14:21:28 CST 2021


Module: vkd3d
Branch: master
Commit: ff6e9300045df6f36b2d7a7ad6ec6ace475af3f0
URL:    https://source.winehq.org/git/vkd3d.git/?a=commit;h=ff6e9300045df6f36b2d7a7ad6ec6ace475af3f0

Author: Conor McCarthy <cmccarthy at codeweavers.com>
Date:   Fri Dec 10 15:07:09 2021 +1000

vkd3d: Change strip cut value FIXMEs to FIXME_ONCE.

These can generate many messages per frame in some games, e.g.
Control.

Signed-off-by: Conor McCarthy <cmccarthy at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 libs/vkd3d/command.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libs/vkd3d/command.c b/libs/vkd3d/command.c
index 1db624e..37159a7 100644
--- a/libs/vkd3d/command.c
+++ b/libs/vkd3d/command.c
@@ -3070,7 +3070,7 @@ static void d3d12_command_list_check_index_buffer_strip_cut_value(struct d3d12_c
         case D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_0xFFFF:
             if (list->index_buffer_format != DXGI_FORMAT_R16_UINT)
             {
-                FIXME("Strip cut value 0xffff is not supported with index buffer format %#x.\n",
+                FIXME_ONCE("Strip cut value 0xffff is not supported with index buffer format %#x.\n",
                         list->index_buffer_format);
             }
             break;
@@ -3078,7 +3078,7 @@ static void d3d12_command_list_check_index_buffer_strip_cut_value(struct d3d12_c
         case D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_0xFFFFFFFF:
             if (list->index_buffer_format != DXGI_FORMAT_R32_UINT)
             {
-                FIXME("Strip cut value 0xffffffff is not supported with index buffer format %#x.\n",
+                FIXME_ONCE("Strip cut value 0xffffffff is not supported with index buffer format %#x.\n",
                         list->index_buffer_format);
             }
             break;




More information about the wine-cvs mailing list