Commit 7160e56a authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Properly check for glBlitFramebuffer().

ARB_framebuffer_object can also provide this entry point.
parent 6f3b4944
......@@ -110,7 +110,7 @@ static inline void swapchain_blit(IWineD3DSwapChainImpl *This, struct wined3d_co
if(w == window.right && h == window.bottom) gl_filter = GL_NEAREST;
else gl_filter = GL_LINEAR;
if(gl_info->supported[EXT_FRAMEBUFFER_BLIT])
if (gl_info->fbo_ops.glBlitFramebuffer)
{
ENTER_GL();
context_bind_fbo(context, GL_READ_FRAMEBUFFER, &context->src_fbo);
......
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