Re: [PATCH v3] video: fix positioning in TrueType console

2021-10-31 Thread Simon Glass
Hi Anatolij, On Sun, 31 Oct 2021 at 18:23, Anatolij Gustschin wrote: > > Hi Simon, > > On Sun, 31 Oct 2021 17:46:56 -0600 > Simon Glass s...@chromium.org wrote: > ... > > > v3: > > > Use floating point only with the TrueType console. > > > v2: > > > Adjust hash values in tests >

Re: [PATCH v3] video: fix positioning in TrueType console

2021-10-31 Thread Anatolij Gustschin
Hi Simon, On Sun, 31 Oct 2021 17:46:56 -0600 Simon Glass s...@chromium.org wrote: ... > > v3: > > Use floating point only with the TrueType console. > > v2: > > Adjust hash values in tests > > --- > > drivers/video/console_truetype.c | 27 --- > >

Re: [PATCH v3] video: fix positioning in TrueType console

2021-10-31 Thread Simon Glass
Hi Heinrich, On Thu, 28 Oct 2021 at 12:01, Heinrich Schuchardt wrote: > > With the patch accurate positioning is possible for mono-typed fonts: > > Fix the return value of console_truetype_putc_xy(). The current position > is passed as parameter x. Some part of x represents a fractional pixel. >

[PATCH v3] video: fix positioning in TrueType console

2021-10-28 Thread Heinrich Schuchardt
With the patch accurate positioning is possible for mono-typed fonts: Fix the return value of console_truetype_putc_xy(). The current position is passed as parameter x. Some part of x represents a fractional pixel. The return value represents how much the character position must be advanced. This