Changeset c9748a4 in mainline for uspace/lib/gfxfont
- Timestamp:
 - 2020-10-01T11:13:43Z (5 years ago)
 - 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)
 - File:
 - 
      
- 1 edited
 
- 
          
  uspace/lib/gfxfont/src/glyph.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/lib/gfxfont/src/glyph.c
rd884672 rc9748a4 333 333 for (y = drect.p0.y; y < drect.p1.y; y++) { 334 334 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); 337 337 } 338 338 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  