Commit 6e4e3d81 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Only warn about 0 blend ops in gl_blend_op().

parent af767551
......@@ -348,7 +348,10 @@ static GLenum gl_blend_op(const struct wined3d_gl_info *gl_info, enum wined3d_bl
case WINED3D_BLEND_OP_MAX:
return gl_info->supported[EXT_BLEND_MINMAX] ? GL_MAX : GL_FUNC_ADD;
default:
FIXME("Unhandled blend op %#x.\n", op);
if (!op)
WARN("Unhandled blend op %#x.\n", op);
else
FIXME("Unhandled blend op %#x.\n", op);
return GL_FUNC_ADD;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment