render: it’s unlikely() the current cell is where the cursor is

This commit is contained in:
Daniel Eklöf 2022-07-28 18:55:34 +02:00
parent 87e4004960
commit 24c2d56804
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -699,7 +699,7 @@ render_cell(struct terminal *term, pixman_image_t *pix,
mtx_unlock(&term->render.workers.lock);
}
if (has_cursor && term->cursor_style == CURSOR_BLOCK && term->kbd_focus)
if (unlikely(has_cursor && term->cursor_style == CURSOR_BLOCK && term->kbd_focus))
draw_cursor(term, cell, font, pix, &fg, &bg, x, y, cell_cols);
if (cell->wc == 0 || cell->wc >= CELL_SPACER || cell->wc == U'\t' ||