diff options
author | vektor <devnull@localhost> | 2003-05-07 16:47:06 +0000 |
---|---|---|
committer | vektor <devnull@localhost> | 2003-05-07 16:47:06 +0000 |
commit | 42c28e8d01beb5898dc2c06aaf9d1311ef72f4d6 (patch) | |
tree | db2e1867f7c6156c9493a9e968f7383fcac84d6c /src/osdtools.h | |
parent | 7bef3bb4ca2946fbb0e35b5506c014860a317319 (diff) |
* tvtime/src/leetft.h: Updated to the latest changes.
* tvtime/src/leetft.c: Ibid.
* tvtime/src/tvtime.c: Pixel aspect instead of frame aspect.
* tvtime/src/tvtimeosd.h: Ibid.
* tvtime/src/tvtimeosd.c: Ibid.
* tvtime/src/vbiscreen.h: Ibid.
* tvtime/src/vbiscreen.c: Ibid.
* tvtime/src/console.h: Ibid.
* tvtime/src/console.c: Ibid.
* tvtime/src/osdtools.h: Ibid.
* tvtime/src/osdtools.c: Ibid.
Diffstat (limited to 'src/osdtools.h')
-rw-r--r-- | src/osdtools.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/osdtools.h b/src/osdtools.h index 47b482b..205d68b 100644 --- a/src/osdtools.h +++ b/src/osdtools.h @@ -47,16 +47,14 @@ typedef enum OSD_Shapes_e { * Eventually I'll just take one parameter: pixel aspect, which would * make more sense. */ -osd_font_t *osd_font_new( const char *fontfile, int fontsize, - int video_width, int video_height, - double video_aspect ); +osd_font_t *osd_font_new( const char *fontfile, int fontsize, double pixel_aspect ); void osd_font_delete( osd_font_t *font ); /** * Creates a new string for a given font, with a given maximum width * that it will be asked to render to (for its back buffer). */ -osd_string_t *osd_string_new( osd_font_t *font, int video_width ); +osd_string_t *osd_string_new( osd_font_t *font ); void osd_string_delete( osd_string_t *osds ); /** |