diff --git a/engine/gf__draw_8h.html b/engine/gf__draw_8h.html
index 9830e3f..d4a8210 100644
--- a/engine/gf__draw_8h.html
+++ b/engine/gf__draw_8h.html
@@ -246,7 +246,7 @@ Functions
-
Definition at line 125 of file gf_draw_common.c.
+Definition at line 131 of file gf_draw_common.c.
@@ -312,7 +312,7 @@ Functions
-Definition at line 95 of file gf_draw_common.c.
+Definition at line 97 of file gf_draw_common.c.
@@ -385,7 +385,7 @@ Functions
- Returns
0
if successful, otherwise if failed
-Definition at line 117 of file gf_draw_common.c.
+Definition at line 123 of file gf_draw_common.c.
diff --git a/engine/gf__draw_8h_source.html b/engine/gf__draw_8h_source.html
index 7a861fc..4ec3617 100644
--- a/engine/gf__draw_8h_source.html
+++ b/engine/gf__draw_8h_source.html
@@ -133,9 +133,9 @@ $(document).ready(function(){initNavTree('gf__draw_8h_source.html',''); initResi
Type definitions related to drawing interface.
void gf_draw_end(void)
Cleanup drawing stuffs.
void gf_draw_begin(void)
Initialize drawing stuffs.
-int gf_draw_step(gf_draw_t *draw)
Do drawing single step.
-void gf_draw_frame(gf_draw_t *draw)
Draw frame (common part)
-void gf_draw_destroy(gf_draw_t *draw)
Destroy drawing interface.
+int gf_draw_step(gf_draw_t *draw)
Do drawing single step.
+void gf_draw_frame(gf_draw_t *draw)
Draw frame (common part)
+void gf_draw_destroy(gf_draw_t *draw)
Destroy drawing interface.
void gf_draw_reshape(gf_draw_t *draw)
Do stuffs required on resizing window.
gf_draw_t * gf_draw_create(gf_engine_t *engine, const char *title)
Create drawing interface.
diff --git a/engine/gf__draw__common_8c_source.html b/engine/gf__draw__common_8c_source.html
index f0d06a7..4330bba 100644
--- a/engine/gf__draw__common_8c_source.html
+++ b/engine/gf__draw__common_8c_source.html
@@ -194,54 +194,60 @@ $(document).ready(function(){initNavTree('gf__draw__common_8c_source.html','');
92void gf_draw_reshape(
gf_draw_t* draw) { gf_draw_driver_reshape(draw); }
-
-
-
-
-
97 color.
r = color.
g = color.
b = color.
a = 255;
-
-
99 gf_graphic_draw_texture_polygon(draw, test_texture, color,
GF_GRAPHIC_3D, 4,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
99 color.
r = color.
g = color.
b = color.
a = 255;
+
+
101 button = gf_gui_create_button(draw->
gui, 0, 0, 200, 100,
"Test");
+
+
+
104 gf_graphic_draw_texture_polygon(draw, test_texture, color,
GF_GRAPHIC_3D, 4,
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
120 gf_gui_render(draw->
gui);
+
-
-
-
-
118 int ret = gf_draw_platform_step(draw);
-
119 if(ret != 0)
return ret;
-
-
-
-
+
+
+
+
124 int ret = gf_draw_platform_step(draw);
+
125 if(ret != 0)
return ret;
+
+
+
+
-
-
-
-
-
-
128 for(i = 0; i <
sizeof(gf_font) /
sizeof(gf_font[0]); i++) {
-
129 gf_texture_destroy(draw->
font[i]);
-
-
-
132 if(draw->
driver != NULL) gf_draw_driver_destroy(draw->
driver);
-
-
-
-
+
+
+
+
+
+
134 for(i = 0; i <
sizeof(gf_font) /
sizeof(gf_font[0]); i++) {
+
135 gf_texture_destroy(draw->
font[i]);
+
+
+
138 if(draw->
driver != NULL) gf_draw_driver_destroy(draw->
driver);
+
+
+
+
@@ -255,6 +261,7 @@ $(document).ready(function(){initNavTree('gf__draw__common_8c_source.html','');
#define gf_log_function(engine, fmt,...)
Output log with line number and function name.
Required headers before anything.
+
int gf_gui_id_t
Component ID.
Type definitions related to math.
gf_texture_t * font[128]
Array of texture of glyphs.