Changeset c9748a4 in mainline


Ignore:
Timestamp:
2020-10-01T11:13:43Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
95d60ed
Parents:
d884672
git-author:
Jiri Svoboda <jiri@…> (2020-09-30 21:13:26)
git-committer:
Jiri Svoboda <jiri@…> (2020-10-01 11:13:43)
Message:

gfx_glyph_transfer still not transferring the correct rectangle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gfxfont/src/glyph.c

    rd884672 rc9748a4  
    333333        for (y = drect.p0.y; y < drect.p1.y; y++) {
    334334                for (x = drect.p0.x; x < drect.p1.x; x++) {
    335                         pixel = pixelmap_get_pixel(&smap, x, y);
    336                         pixelmap_put_pixel(&dmap, x + offs, y, pixel);
     335                        pixel = pixelmap_get_pixel(&smap, x - offs, y);
     336                        pixelmap_put_pixel(&dmap, x, y, pixel);
    337337                }
    338338        }
Note: See TracChangeset for help on using the changeset viewer.