st/xorg: disable solid fills until copies are accelerated as well

This commit is contained in:
Zack Rusin 2009-09-09 11:35:34 -04:00
parent 6be1a98ab9
commit 16886c8be3
2 changed files with 3 additions and 1 deletions

View file

@ -656,7 +656,7 @@ boolean xorg_solid_bind_state(struct exa_context *exa,
cso_set_vertex_shader_handle(exa->cso, shader.vs);
cso_set_fragment_shader_handle(exa->cso, shader.fs);
return TRUE;
return FALSE;
}
void xorg_solid(struct exa_context *exa,

View file

@ -233,8 +233,10 @@ ExaDone(PixmapPtr pPixmap)
return;
exa->ctx->flush(exa->ctx, PIPE_FLUSH_RENDER_CACHE, &fence);
#if 0
exa->ctx->screen->fence_finish(exa->ctx->screen, fence, 0);
exa->ctx->screen->fence_reference(exa->ctx->screen, &fence, NULL);
#endif
if (priv->src_surf)
exa->scrn->tex_surface_destroy(priv->src_surf);