docs: documented graphics buffer string draw update

This commit is contained in:
antifallobst 2023-02-22 13:29:54 +01:00
parent 7b467b1cd5
commit 8505345de9
1 changed files with 2 additions and 1 deletions

View File

@ -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.