cleanup: namespace Montauk (capital M) => montauk::abi

This commit is contained in:
2026-06-16 09:09:16 +02:00
parent b091af7653
commit e3dc1e881d
165 changed files with 758 additions and 758 deletions
+3 -3
View File
@@ -3,7 +3,7 @@
fb_info, fb_map - direct framebuffer access
.SH SYNOPSIS
.BI void montauk::fb_info(Montauk::FbInfo* info);
.BI void montauk::fb_info(montauk::abi::FbInfo* info);
.BI void* montauk::fb_map();
.SH DESCRIPTION
@@ -13,7 +13,7 @@
.SS fb_info
Fills in an FbInfo structure with the framebuffer geometry:
Montauk::FbInfo fb;
montauk::abi::FbInfo fb;
montauk::fb_info(&fb);
// fb.width, fb.height, fb.pitch, fb.bpp
@@ -40,7 +40,7 @@
.SH EXAMPLE
Fill the screen with blue:
Montauk::FbInfo fb;
montauk::abi::FbInfo fb;
montauk::fb_info(&fb);
uint32_t* pixels = (uint32_t*)montauk::fb_map();