search for: 22x11

Displaying 1 result from an estimated 1 matches for "22x11".

Did you mean: 2211
2016 Jul 28
0
[PATCH] drm/nouveau/fbcon: fix font width not divisible by 8
...ses") tries to fix some out of memory accesses. Unfortunatelly, the patch breaks the display when using fonts with width that is not divisiable by 8. The monochrome bitmap for each character is stored in memory by lines from top to bottom. Each line is padded to a full byte. For example, for 22x11 font, each line is padded to 16 bits, so each character is consuming 44 bytes total, that is 11 32-bit words. The patch f045f459d925 changed the logic to "dsize = ALIGN(image->width * image->height, 32) >> 5", that is just 8 words - this is incorrect and it causes display...