mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 15:56:42 +00:00
10 lines
225 B
C
10 lines
225 B
C
|
#ifndef _DRAWMETHODS_H
|
||
|
#define _DRAWMETHODS_H
|
||
|
|
||
|
#include "goom_config.h"
|
||
|
#include "goom_graphic.h"
|
||
|
|
||
|
void draw_line (Pixel *data, int x1, int y1, int x2, int y2, int col, int screenx, int screeny);
|
||
|
|
||
|
#endif /* _DRAWMETHODS_H */
|