mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 14:24:45 +00:00
wined3d: Reject color blits on sysmem surfaces in arbfp_blit_supported().
This commit is contained in:
parent
fda05436d1
commit
c592d553f0
1 changed files with 3 additions and 0 deletions
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue