mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
vulkan: Handle empty rects in intersects_rect()
Apart from the none case, this was already handled, so we just check if the rect is empty now.
This commit is contained in:
parent
cf48f83709
commit
82ba8c848b
@ -252,7 +252,7 @@ gsk_vulkan_clip_intersects_rect (const GskVulkanClip *self,
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
case GSK_VULKAN_CLIP_NONE:
|
case GSK_VULKAN_CLIP_NONE:
|
||||||
return TRUE;
|
return r.size.width > 0 && r.size.height > 0;
|
||||||
|
|
||||||
case GSK_VULKAN_CLIP_RECT:
|
case GSK_VULKAN_CLIP_RECT:
|
||||||
return graphene_rect_intersection (&self->rect.bounds, &r, NULL);
|
return graphene_rect_intersection (&self->rect.bounds, &r, NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user