Fix bug when debug-painting clip rectangles
This commit is contained in:
parent
aa53522179
commit
3a5ec4733f
1 changed files with 14 additions and 10 deletions
|
@ -1026,6 +1026,7 @@ pub fn tessellate_shapes(
|
|||
|
||||
if options.debug_paint_clip_rects {
|
||||
for ClippedMesh(clip_rect, mesh) in &mut clipped_meshes {
|
||||
if mesh.texture_id == TextureId::default() {
|
||||
tessellator.clip_rect = Rect::EVERYTHING;
|
||||
tessellator.tessellate_shape(
|
||||
tex_size,
|
||||
|
@ -1036,6 +1037,9 @@ pub fn tessellate_shapes(
|
|||
),
|
||||
mesh,
|
||||
);
|
||||
} else {
|
||||
// TODO: create a new `ClippedMesh` just for the painted clip rectangle
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue