projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0fbb92
)
[WIN32K] Update FTVectorToPOINTFX to reduce diff to Wine.
author
Amine Khaldi
<amine.khaldi@reactos.org>
Fri, 29 May 2015 11:21:31 +0000
(11:21 +0000)
committer
Amine Khaldi
<amine.khaldi@reactos.org>
Fri, 29 May 2015 11:21:31 +0000
(11:21 +0000)
svn path=/trunk/; revision=67949
reactos/win32ss/gdi/ntgdi/freetype.c
patch
|
blob
|
history
diff --git
a/reactos/win32ss/gdi/ntgdi/freetype.c
b/reactos/win32ss/gdi/ntgdi/freetype.c
index
c106814
..
bb1a215
100644
(file)
--- a/
reactos/win32ss/gdi/ntgdi/freetype.c
+++ b/
reactos/win32ss/gdi/ntgdi/freetype.c
@@
-1508,9
+1508,7
@@
ftGdiGlyphCacheSet(
}
-static
-void
-FTVectorToPOINTFX(FT_Vector *vec, POINTFX *pt)
+static void FTVectorToPOINTFX(FT_Vector *vec, POINTFX *pt)
{
pt->x.value = vec->x >> 6;
pt->x.fract = (vec->x & 0x3f) << 10;
@@
-1518,7
+1516,6
@@
FTVectorToPOINTFX(FT_Vector *vec, POINTFX *pt)
pt->y.value = vec->y >> 6;
pt->y.fract = (vec->y & 0x3f) << 10;
pt->y.fract |= ((pt->y.fract >> 6) | (pt->y.fract >> 12));
- return;
}
/*