Skip to content

Commit e9cb631

Browse files
committed
use quadratic instead of cubic approximation
Signed-off-by: Slice <sergey.slice@gmail.com>
1 parent 652aa29 commit e9cb631

3 files changed

Lines changed: 311 additions & 12 deletions

File tree

rEFIt_UEFI/libeg/VectorGraphics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ INTN renderSVGtext(XImage* TextBufferXY_ptr, INTN posX, INTN posY, const textFac
388388
Scale = sy;
389389
x = (float)posX; //0.f;
390390
y = (float)posY + fontSVG->bbox[1] * Scale;
391-
p->isText = true;
391+
p->isText = 1;
392392
size_t len = string.length();
393393
for (size_t i=0; i < len; i++) {
394394
CHAR16 letter = string.char16At(i);

0 commit comments

Comments
 (0)