god daaaaamn! fix fix fix fix :)

SVN revision: 4597
This commit is contained in:
Carsten Haitzler 2001-04-12 20:25:43 +00:00
parent 84d24d28da
commit da35459d86
2 changed files with 8 additions and 8 deletions

View File

@ -1734,28 +1734,28 @@ int
__evas_gl_text_font_get_ascent(Evas_GL_Font *fn)
{
if (!fn) return 0;
return fn->ascent;
return fn->ascent / 64;
}
int
__evas_gl_text_font_get_descent(Evas_GL_Font *fn)
{
if (!fn) return 0;
return fn->descent;
return fn->descent / 64;
}
int
__evas_gl_text_font_get_max_ascent(Evas_GL_Font *fn)
{
if (!fn) return 0;
return fn->max_ascent;
return fn->max_ascent / 64;
}
int
__evas_gl_text_font_get_max_descent(Evas_GL_Font *fn)
{
if (!fn) return 0;
return fn->max_descent;
return fn->max_descent / 64;
}
void

View File

@ -782,28 +782,28 @@ int
__evas_x11_text_font_get_ascent(Evas_X11_Font *fn)
{
if (!fn) return 0;
return fn->ascent;
return fn->ascent / 64;
}
int
__evas_x11_text_font_get_descent(Evas_X11_Font *fn)
{
if (!fn) return 0;
return fn->descent;
return fn->descent / 64;
}
int
__evas_x11_text_font_get_max_ascent(Evas_X11_Font *fn)
{
if (!fn) return 0;
return fn->max_ascent;
return fn->max_ascent / 64;
}
int
__evas_x11_text_font_get_max_descent(Evas_X11_Font *fn)
{
if (!fn) return 0;
return fn->max_descent;
return fn->max_descent / 64;
}
void