Commit 847ad743 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

wined3d: Fix condition to determine if FIXME message should be printed.

Spotted by Matteo Bruni. Signed-off-by: 's avatarJózef Kucia <jkucia@codeweavers.com> Signed-off-by: 's avatarHenri Verbeet <hverbeet@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent b89e3f80
......@@ -166,7 +166,7 @@ static void create_buffer_texture(struct wined3d_gl_view *view,
}
else
{
if (!offset || size != buffer->resource.size)
if (offset || size != buffer->resource.size)
FIXME("OpenGL implementation does not support ARB_texture_buffer_range.\n");
GL_EXTCALL(glTexBuffer(GL_TEXTURE_BUFFER, view_format->glInternal, buffer->buffer_object));
}
......
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