Changeset 2ee6351 in mainline


Ignore:
Timestamp:
2024-09-12T12:35:23Z (2 months ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master
Children:
dd50aa19
Parents:
9c40b834
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2024-08-20 14:21:37)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2024-09-12 12:35:23)
Message:

Remove unused/undocumented sx, sy arguments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/terminal/terminal.c

    r9c40b834 r2ee6351  
    215215
    216216static void term_update_char(terminal_t *term, pixelmap_t *pixelmap,
    217     sysarg_t sx, sysarg_t sy, sysarg_t col, sysarg_t row)
     217    sysarg_t col, sysarg_t row)
    218218{
    219219        charfield_t *field =
     
    222222        bool inverted = chargrid_cursor_at(term->backbuf, col, row);
    223223
    224         sysarg_t bx = sx + (col * FONT_WIDTH);
    225         sysarg_t by = sy + (row * FONT_SCANLINES);
     224        sysarg_t bx = col * FONT_WIDTH;
     225        sysarg_t by = row * FONT_SCANLINES;
    226226
    227227        pixel_t bgcolor = 0;
     
    251251}
    252252
    253 static bool term_update_scroll(terminal_t *term, pixelmap_t *pixelmap,
    254     sysarg_t sx, sysarg_t sy)
     253static bool term_update_scroll(terminal_t *term, pixelmap_t *pixelmap)
    255254{
    256255        sysarg_t top_row = chargrid_get_top_row(term->frontbuf);
     
    283282
    284283                        if (update) {
    285                                 term_update_char(term, pixelmap, sx, sy, col, row);
     284                                term_update_char(term, pixelmap, col, row);
    286285                        }
    287286                }
     
    291290}
    292291
    293 static bool term_update_cursor(terminal_t *term, pixelmap_t *pixelmap,
    294     sysarg_t sx, sysarg_t sy)
     292static bool term_update_cursor(terminal_t *term, pixelmap_t *pixelmap)
    295293{
    296294        bool update = false;
     
    313311                chargrid_set_cursor_visibility(term->backbuf,
    314312                    front_visibility);
    315                 term_update_char(term, pixelmap, sx, sy, back_col, back_row);
     313                term_update_char(term, pixelmap, back_col, back_row);
    316314                update = true;
    317315        }
     
    319317        if ((front_col != back_col) || (front_row != back_row)) {
    320318                chargrid_set_cursor(term->backbuf, front_col, front_row);
    321                 term_update_char(term, pixelmap, sx, sy, back_col, back_row);
    322                 term_update_char(term, pixelmap, sx, sy, front_col, front_row);
     319                term_update_char(term, pixelmap, back_col, back_row);
     320                term_update_char(term, pixelmap, front_col, front_row);
    323321                update = true;
    324322        }
     
    345343
    346344        bool update = false;
    347         sysarg_t sx = 0;
    348         sysarg_t sy = 0;
    349 
    350         if (term_update_scroll(term, &pixelmap, sx, sy)) {
     345
     346        if (term_update_scroll(term, &pixelmap)) {
    351347                update = true;
    352348        } else {
     
    376372
    377373                                if (cupdate) {
    378                                         term_update_char(term, &pixelmap, sx, sy, x, y);
     374                                        term_update_char(term, &pixelmap, x, y);
    379375                                        update = true;
    380376                                }
     
    383379        }
    384380
    385         if (term_update_cursor(term, &pixelmap, sx, sy))
     381        if (term_update_cursor(term, &pixelmap))
    386382                update = true;
    387383
     
    418414        pixelmap.data = alloc.pixels;
    419415
    420         sysarg_t sx = 0;
    421         sysarg_t sy = 0;
    422 
    423         if (!term_update_scroll(term, &pixelmap, sx, sy)) {
     416        if (!term_update_scroll(term, &pixelmap)) {
    424417                for (sysarg_t y = 0; y < term->rows; y++) {
    425418                        for (sysarg_t x = 0; x < term->cols; x++) {
     
    433426                                front_field->flags &= ~CHAR_FLAG_DIRTY;
    434427
    435                                 term_update_char(term, &pixelmap, sx, sy, x, y);
     428                                term_update_char(term, &pixelmap, x, y);
    436429                        }
    437430                }
    438431        }
    439432
    440         term_update_cursor(term, &pixelmap, sx, sy);
     433        term_update_cursor(term, &pixelmap);
    441434
    442435        fibril_mutex_unlock(&term->mtx);
Note: See TracChangeset for help on using the changeset viewer.