Henri Verbeet : wined3d: Correct the argument order of a FIXME in wined3d_texture_vk_download_data().

Alexandre Julliard julliard at winehq.org
Thu Jan 21 16:19:15 CST 2021


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

Author: Henri Verbeet <hverbeet at codeweavers.com>
Date:   Thu Jan 21 10:55:53 2021 +0100

wined3d: Correct the argument order of a FIXME in wined3d_texture_vk_download_data().

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

---

 dlls/wined3d/texture.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/wined3d/texture.c b/dlls/wined3d/texture.c
index 6f16868c5ad..5bb4de05d5c 100644
--- a/dlls/wined3d/texture.c
+++ b/dlls/wined3d/texture.c
@@ -4771,8 +4771,8 @@ static void wined3d_texture_vk_download_data(struct wined3d_context *context,
     if (dst_format->id != src_texture->resource.format->id)
     {
         FIXME("Unhandled format conversion (%s -> %s).\n",
-                debug_d3dformat(dst_format->id),
-                debug_d3dformat(src_texture->resource.format->id));
+                debug_d3dformat(src_texture->resource.format->id),
+                debug_d3dformat(dst_format->id));
         return;
     }
 




More information about the wine-cvs mailing list