mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-06 14:20:12 +01:00
glamor: Two pass won't work on memory pixmaps
When selecting "CA_TWO_PASS" in glamor_composite_clipped_region() when the hardware does not support "GL_ARB_blend_func_extended", we call glamor_composite_choose_shader() twice in a row, which in turn calls glamor_pixmap_ensure_fbo(). On memory pixmaps, the first call will set the FBO and the second one will fail an assertion in glamor_upload_picture_to_texture() because the FBO is already set. Bail out earlier when the mask pixmap is in memory and the hardware capabilities would require to use two pass, so that the assertion is not failed and the rendering is correct. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=99346 Signed-off-by: Olivier Fourdan <ofourdan@redhat.com> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
e7b8b7b131
commit
8646398136
1 changed files with 4 additions and 0 deletions
|
|
@ -1494,6 +1494,10 @@ glamor_composite_clipped_region(CARD8 op,
|
|||
ca_state = CA_DUAL_BLEND;
|
||||
} else {
|
||||
if (op == PictOpOver) {
|
||||
if (glamor_pixmap_is_memory(mask_pixmap)) {
|
||||
glamor_fallback("two pass not supported on memory pximaps\n");
|
||||
goto out;
|
||||
}
|
||||
ca_state = CA_TWO_PASS;
|
||||
op = PictOpOutReverse;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue