This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/libraries/daguerre/source/framebuffer.cpp

12 lines
307 B
C++

#include <daguerre/framebuffer.hpp>
namespace daguerre {
image<hilbert_color> get_hilbert_framebuffer() {
hilbert_color *ptr;
uint32_t width, height, pitch;
euler::syscall::get_framebuffer(ptr, width, height, pitch);
return image<hilbert_color>(width, height, ptr, pitch, false);
}
}