[vte/wip/egmont/bidi: 33/64] prepare draw_cells for a likely forthcoming change



commit 859fab36af7ce88f8b19f926394c2ff4063ab569
Author: Egmont Koblinger <egmont gmail com>
Date:   Fri Aug 24 12:27:18 2018 +0200

    prepare draw_cells for a likely forthcoming change

 src/vte.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/vte.cc b/src/vte.cc
index f74f53f9..052faba7 100644
--- a/src/vte.cc
+++ b/src/vte.cc
@@ -8391,7 +8391,7 @@ Terminal::draw_cells(struct _vte_draw_text_request *items,
                columns = 0;
                x = items[i].x;
                y = items[i].y;
-                /* Items are not necessarily continuous. */
+                /* Items are not necessarily in LTR order. Combine the ones that form an LTR run. */
                 for (; i < n && items[i].x == x + columns * column_width && items[i].y == y; i++) {
                        columns += items[i].columns;
                }
@@ -8432,7 +8432,7 @@ Terminal::draw_cells(struct _vte_draw_text_request *items,
                do {
                        x = items[i].x;
                        y = items[i].y;
-                        /* Items are not necessarily continuous. */
+                        /* Items are not necessarily in LTR order. Combine the ones that form an LTR run. */
                         for (columns = 0; i < n && items[i].x == x + columns * column_width && items[i].y == 
y; i++) {
                                columns += items[i].columns;
                        }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]