From f3c73f5e520e7e4863582367222afa4ce043cdfc Mon Sep 17 00:00:00 2001 From: antifallobst Date: Fri, 24 Feb 2023 23:48:28 +0100 Subject: [PATCH] docs: documented 'graphics_buffer_shift_up' --- .wiki/Kernel-documentation.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.wiki/Kernel-documentation.md b/.wiki/Kernel-documentation.md index 5bdec40..7e11934 100644 --- a/.wiki/Kernel-documentation.md +++ b/.wiki/Kernel-documentation.md @@ -386,6 +386,9 @@ Disables rendering for this buffer. #### `graphics_buffer_destruct(graphics_buffer)` - function (void) Removes **_graphics_buffer_** from the rendering queue and frees its memory allocations. +#### `graphics_buffer_shift_up(graphics_buffer, shift)` - function (void) +Shifts **_graphics_buffer_**'s content **_shift_** rows up. + #### `graphics_buffer_set_pixel(graphics_buffer, x, y, color)` - function (void) Sets a pixel with the given **_color_** at position(**_x_** | **_y_**) in **_graphics_buffer_**. **_x_** and **_y_** are graphics buffer relative.