From 0e66d9c915d69deb9e312441b52cf0be02b5638b Mon Sep 17 00:00:00 2001
From: NishiOwO <89888985+NishiOwO@users.noreply.github.com>
Date: Fri, 18 Apr 2025 02:24:50 +0000
Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20NishiOwO?=
=?UTF-8?q?/nishbox@95673f7829c097e3c5df276f47b30f977c7a4a3d=20?=
=?UTF-8?q?=F0=9F=9A=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
engine/gf__draw_8h.html | 8 +-
engine/gf__draw_8h_source.html | 8 +-
engine/gf__draw__common_8c_source.html | 158 ++++++++++++-------------
3 files changed, 86 insertions(+), 88 deletions(-)
diff --git a/engine/gf__draw_8h.html b/engine/gf__draw_8h.html
index d83eb2a..3485511 100644
--- a/engine/gf__draw_8h.html
+++ b/engine/gf__draw_8h.html
@@ -246,7 +246,7 @@ Functions
-
Definition at line 120 of file gf_draw_common.c.
+Definition at line 118 of file gf_draw_common.c.
@@ -312,7 +312,7 @@ Functions
-Definition at line 86 of file gf_draw_common.c.
+Definition at line 84 of file gf_draw_common.c.
@@ -348,7 +348,7 @@ Functions
-Definition at line 81 of file gf_draw_common.c.
+Definition at line 79 of file gf_draw_common.c.
@@ -385,7 +385,7 @@ Functions
- Returns
0
if successful, otherwise if failed
-Definition at line 112 of file gf_draw_common.c.
+Definition at line 110 of file gf_draw_common.c.
diff --git a/engine/gf__draw_8h_source.html b/engine/gf__draw_8h_source.html
index 9050a40..26c3d4b 100644
--- a/engine/gf__draw_8h_source.html
+++ b/engine/gf__draw_8h_source.html
@@ -133,10 +133,10 @@ $(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.
-void gf_draw_reshape(gf_draw_t *draw)
Do stuffs required on resizing window.
+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.
#define GF_EXPORT
Macro for platform-dependent symbol export/import.
diff --git a/engine/gf__draw__common_8c_source.html b/engine/gf__draw__common_8c_source.html
index 0455cc1..8b52d94 100644
--- a/engine/gf__draw__common_8c_source.html
+++ b/engine/gf__draw__common_8c_source.html
@@ -145,92 +145,90 @@ $(document).ready(function(){initNavTree('gf__draw__common_8c_source.html','');
43 strcpy(draw->
title, title);
44 draw->
platform = gf_draw_platform_create(engine, draw);
-
-
- 48 draw->
driver = gf_draw_driver_create(engine, draw);
- 49 gf_draw_reshape(draw);
-
-
-
- 53 draw->
light[1] = 10.0;
-
-
-
-
-
-
-
-
-
-
+ 46 draw->
driver = gf_draw_driver_create(engine, draw);
+ 47 gf_draw_reshape(draw);
+
+
+
+ 51 draw->
light[1] = 10.0;
+
+
+
+
+
+
+
+
+
+
+
+ 63 draw->
font = gf_font_create(draw,
"font/helvR24.bdf");
- 65 draw->
font = gf_font_create(draw,
"font/helvR24.bdf");
-
- 67 draw->
gui = gf_gui_create(engine, draw);
-
-
- 70 unsigned char* d = stbi_load(
"texture/test.bmp", &w, &h, &c, 4);
- 71 test_texture = gf_texture_create(draw, w, h, d);
-
-
-
- 75 gf_draw_destroy(draw);
-
-
-
-
+ 65 draw->
gui = gf_gui_create(engine, draw);
+
+
+ 68 unsigned char* d = stbi_load(
"texture/test.bmp", &w, &h, &c, 4);
+ 69 test_texture = gf_texture_create(draw, w, h, d);
+
+
+
+ 73 gf_draw_destroy(draw);
+
+
+
+
+
+ 79void gf_draw_reshape(
gf_draw_t* draw) { gf_draw_driver_reshape(draw); }
- 81void gf_draw_reshape(
gf_draw_t* draw) { gf_draw_driver_reshape(draw); }
+
-
-
-
-
-
-
-
88 color.
r = color.
g = color.
b = color.
a = 255;
-
-
90 button = gf_gui_create_button(draw->
gui, 0, 0, 200, 100,
"\"Test\" text");
-
-
-
93 gf_graphic_draw_texture_polygon(draw, test_texture, color,
GF_GRAPHIC_3D, 4,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
109 gf_gui_render(draw->
gui);
-
+
+
+
+
+
86 color.
r = color.
g = color.
b = color.
a = 255;
+
+
88 button = gf_gui_create_button(draw->
gui, 0, 0, 200, 100,
"\"Test\" text");
+
+
+
91 gf_graphic_draw_texture_polygon(draw, test_texture, color,
GF_GRAPHIC_3D, 4,
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
107 gf_gui_render(draw->
gui);
+
-
-
-
-
113 int ret = gf_draw_platform_step(draw);
-
114 if(ret != 0)
return ret;
-
-
-
-
+
+
+
+
111 int ret = gf_draw_platform_step(draw);
+
112 if(ret != 0)
return ret;
+
+
+
+
-
-
-
-
121 if(draw->
driver != NULL) gf_draw_driver_destroy(draw->
driver);
-
-
-
-
+
+
+
+
119 if(draw->
driver != NULL) gf_draw_driver_destroy(draw->
driver);
+
+
+
+