wined3d: Reject color blits on sysmem surfaces in arbfp_blit_supported().

This commit is contained in:
Henri Verbeet 2011-08-22 21:02:41 +02:00 committed by Alexandre Julliard
parent fda05436d1
commit c592d553f0
1 changed files with 3 additions and 0 deletions

View File

@ -7166,6 +7166,9 @@ static BOOL arbfp_blit_supported(const struct wined3d_gl_info *gl_info, enum win
return FALSE;
}
if (src_pool == WINED3DPOOL_SYSTEMMEM || dst_pool == WINED3DPOOL_SYSTEMMEM)
return FALSE;
src_fixup = get_complex_fixup(src_format->color_fixup);
if (TRACE_ON(d3d_shader) && TRACE_ON(d3d))
{