Henri Verbeet : wined3d: Only warn about unsupported input streams in fixed_get_input().

Alexandre Julliard julliard at winehq.org
Wed May 24 17:17:33 CDT 2017


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

Author: Henri Verbeet <hverbeet at codeweavers.com>
Date:   Wed May 24 11:22:10 2017 +0200

wined3d: Only warn about unsupported input streams in fixed_get_input().

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

---

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

diff --git a/dlls/wined3d/context.c b/dlls/wined3d/context.c
index 6d09c22..cfeae83 100644
--- a/dlls/wined3d/context.c
+++ b/dlls/wined3d/context.c
@@ -3232,8 +3232,8 @@ static BOOL fixed_get_input(BYTE usage, BYTE usage_idx, unsigned int *regnum)
         *regnum = WINED3D_FFP_TEXCOORD0 + usage_idx;
     else
     {
-        FIXME("Unsupported input stream [usage=%s, usage_idx=%u].\n", debug_d3ddeclusage(usage), usage_idx);
-        *regnum = ~0U;
+        WARN("Unsupported input stream [usage=%s, usage_idx=%u].\n", debug_d3ddeclusage(usage), usage_idx);
+        *regnum = ~0u;
         return FALSE;
     }
 




More information about the wine-cvs mailing list