MythTV master
ifs.h
Go to the documentation of this file.
1/*
2 * File created 11 april 2002 by JeKo <jeko@free.fr>
3 */
4
5#ifndef IFS_H
6#define IFS_H
7
8#include "goomconfig.h"
9
11{
13};
14
15// init ifs for a (width)x(height) output.
16void init_ifs (int width, int height);
17
18// draw an ifs on the buffer (which size is width * height)
19// increment means that we draw 1/increment of the ifs's points
20void ifs_update (guint32 * data, const guint32 * back, int width, int height, int increment);
21
22// free all ifs's data.
23void release_ifs (void);
24
25
26/* DONT USE !!! deprecated
27 * return a an array of points.
28 * WARNING !!! do not free it !!! it also has an internal use..
29 */
30IFSPoint *draw_ifs (int *nbPoints);
31
32#endif
static guint32 * back
Definition: goom_core.cpp:25
#define gint32
Definition: goomconfig.h:38
#define guint32
Definition: goomconfig.h:35
void init_ifs(int width, int height)
Definition: ifs.cpp:166
void release_ifs(void)
Definition: ifs.cpp:487
void ifs_update(guint32 *data, const guint32 *back, int width, int height, int increment)
Definition: ifs_display.cpp:13
IFSPoint * draw_ifs(int *nbPoints)
Definition: ifs.cpp:411
Definition: ifs.h:11
gint32 y
Definition: ifs.h:12
gint32 x
Definition: ifs.h:12