st/nine: Fix FillColor Flag check

IT is better check if the surface was created with RT flag,
instead of checking capability (llvmpipe was complaining)

Signed-off-by: Axel Davy <axel.davy@ens.fr>
This commit is contained in:
Axel Davy
2015-05-16 18:40:02 +02:00
parent ef8ade6f09
commit 3bcab9ba75
+2 -5
View File
@@ -1683,11 +1683,8 @@ NineDevice9_ColorFill( struct NineDevice9 *This,
}
d3dcolor_to_pipe_color_union(&rgba, color);
fallback =
!This->screen->is_format_supported(This->screen, surf->base.info.format,
surf->base.info.target,
surf->base.info.nr_samples,
PIPE_BIND_RENDER_TARGET);
fallback = !(surf->base.info.bind & PIPE_BIND_RENDER_TARGET);
if (!fallback) {
psurf = NineSurface9_GetSurface(surf, 0);
if (!psurf)