Module: wine Branch: master Commit: 985c061ad3c14241e702930aa254202d831a559d URL: http://source.winehq.org/git/wine.git/?a=commit;h=985c061ad3c14241e702930aa2...
Author: Stefan Dösinger stefan@codeweavers.com Date: Tue Jun 9 09:28:10 2015 +0200
wined3d: Downgrade the framebuffer attachment FIXMEs to WARNs.
---
dlls/wined3d/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wined3d/utils.c b/dlls/wined3d/utils.c index 62158a0..44ba7ad 100644 --- a/dlls/wined3d/utils.c +++ b/dlls/wined3d/utils.c @@ -1608,7 +1608,7 @@ static void check_fbo_compat(const struct wined3d_gl_info *gl_info, struct wined { if (format->flags[type] & WINED3DFMT_FLAG_RENDERTARGET) { - FIXME("Format %s with rendertarget flag is not supported as FBO color attachment (type %u)," + WARN("Format %s with rendertarget flag is not supported as FBO color attachment (type %u)," " and no fallback specified.\n", debug_d3dformat(format->id), type); format->flags[type] &= ~WINED3DFMT_FLAG_RENDERTARGET; } @@ -1642,7 +1642,7 @@ static void check_fbo_compat(const struct wined3d_gl_info *gl_info, struct wined } else { - FIXME("Format %s rtInternal format is not supported as FBO %s attachment, type %u.\n", + WARN("Format %s rtInternal format is not supported as FBO %s attachment, type %u.\n", debug_d3dformat(format->id), type_string, type); format->flags[type] &= ~WINED3DFMT_FLAG_RENDERTARGET; }