MTek-GDL 0.100.4-muffintrap
Loading...
Searching...
No Matches
mgdl-wii-basic.h
1
5#ifndef _GDL_WII_BASIC_H
6#define _GDL_WII_BASIC_H
7
8#include <mgdl/mgdl-types.h>
9#include <mgdl/mgdl-util.h>
10
11namespace gdl {
12
13
27
35void DrawPoint(short x, short y, u_int col);
36
37
39
49void DrawLine(short x1, short y1, short x2, short y2, u_int col);
50
51
53
60void DrawBox(short x1, short y1, short x2, short y2, u_int col);
61
62
64
71void DrawBoxF(short x1, short y1, short x2, short y2, u_int col);
72
73
75
83void DrawLineG(short x1, short y1, short x2, short y2, u_int col_a, u_int col_b);
84
85
87
97void DrawBoxG(short x1, short y1, short x2, short y2, u_int tl_col, u_int tr_col, u_int br_col, u_int bl_col);
98
99
101
111void DrawBoxFG(short x1, short y1, short x2, short y2, u_int tl_col, u_int tr_col, u_int br_col, u_int bl_col);
112
116}
117
118#endif // _MGDL_WII_BASIC_H
void DrawPoint(short x, short y, u_int col)
Draws a point or a single pixel.
Definition wii-basic.cpp:15
void DrawLine(short x1, short y1, short x2, short y2, u_int col)
Draws a line.
Definition wii-basic.cpp:32
void DrawBoxFG(short x1, short y1, short x2, short y2, u_int tl_col, u_int tr_col, u_int br_col, u_int bl_col)
Draws a filled gouraud-shaded box.
Definition wii-basic.cpp:142
void DrawBoxF(short x1, short y1, short x2, short y2, u_int col)
Draws a filled box.
Definition wii-basic.cpp:101
void DrawBoxG(short x1, short y1, short x2, short y2, u_int tl_col, u_int tr_col, u_int br_col, u_int bl_col)
Draws a gouraud-shaded box.
Definition wii-basic.cpp:183
void DrawLineG(short x1, short y1, short x2, short y2, u_int col_a, u_int col_b)
Draws a gouraud-shaded line.
Definition wii-basic.cpp:232
void DrawBox(short x1, short y1, short x2, short y2, u_int col)
Draws a box.
Definition wii-basic.cpp:52
Library types, macros, defines and enums header.
Library namespace.
Definition wii-globals.cpp:12