From 8505345de94729a350ab2c6e71e8be412b01d4eb Mon Sep 17 00:00:00 2001 From: antifallobst Date: Wed, 22 Feb 2023 13:29:54 +0100 Subject: [PATCH] docs: documented graphics buffer string draw update --- .wiki/Kernel-documentation.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.wiki/Kernel-documentation.md b/.wiki/Kernel-documentation.md index e38f79c..890a833 100644 --- a/.wiki/Kernel-documentation.md +++ b/.wiki/Kernel-documentation.md @@ -371,9 +371,10 @@ Returns the color of the pixel at position(**_x_** | **_y_**) in **_graphics_buf Draws a character (**_chr_**) at position(**_x_** | **_y_**) in **_graphics_buffer_**. The position is the top-left corner of the char. -#### `graphics_buffer_draw_string(graphics_buffer, x, y, color, string)` - function (void) +#### `graphics_buffer_draw_string(graphics_buffer, x, y, color, string)` - function (position_T) Draws **_string_** at position(**_x_** | **_y_**) in **_graphics_buffer_**. The position is the top-left corner of the string. +Returns the position after the last char of the string. #### `graphics_renderer_init(boot_info)` - function (void) Initializes the global graphics renderer.