mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- get rid of some cast frenzy, by Physicus
svn path=/trunk/; revision=43910
This commit is contained in:
parent
303db2db11
commit
adfd84da55
1 changed files with 2 additions and 2 deletions
|
@ -647,7 +647,7 @@ INT DrawGlyph(UCHAR* glyphBuf, DWORD glyphSize, FLOAT chordalDeviation, FLOAT ex
|
|||
v[2] = 0.0;
|
||||
z_value = 0.0f;
|
||||
|
||||
gluTessBeginPolygon(tess, (VOID *)*(INT *)&z_value);
|
||||
gluTessBeginPolygon(tess, &z_value);
|
||||
|
||||
for (loop = (DWORD) *p++; loop; --loop)
|
||||
{
|
||||
|
@ -718,7 +718,7 @@ INT DrawGlyph(UCHAR* glyphBuf, DWORD glyphSize, FLOAT chordalDeviation, FLOAT ex
|
|||
glNormal3f(0.0f, 0.0f, -1.0f);
|
||||
gluTessNormal(tess, 0.0F, 0.0F, -1.0F);
|
||||
|
||||
gluTessBeginPolygon(tess, (VOID *)*(INT *)&thickness);
|
||||
gluTessBeginPolygon(tess, &thickness);
|
||||
|
||||
for (loop = (DWORD) *p++; loop; --loop)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue