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