wined3d: Reject color blits on sysmem surfaces in arbfp_blit_supported().
This commit is contained in:
parent
fda05436d1
commit
c592d553f0
|
@ -7166,6 +7166,9 @@ static BOOL arbfp_blit_supported(const struct wined3d_gl_info *gl_info, enum win
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (src_pool == WINED3DPOOL_SYSTEMMEM || dst_pool == WINED3DPOOL_SYSTEMMEM)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
src_fixup = get_complex_fixup(src_format->color_fixup);
|
src_fixup = get_complex_fixup(src_format->color_fixup);
|
||||||
if (TRACE_ON(d3d_shader) && TRACE_ON(d3d))
|
if (TRACE_ON(d3d_shader) && TRACE_ON(d3d))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue