apio
140910763e
All checks were successful
Build and test / build (push) Successful in 1m56s
Why are command-line utilities stored in "apps"? And why are apps like "editor" or "terminal" top-level directories? Command-line utilities now go in "utils". GUI stuff now goes in "gui". This includes: libui -> gui/libui, wind -> gui/wind, GUI apps -> gui/apps, editor&terminal -> gui/apps... System services go in "system".
35 lines
437 B
C++
35 lines
437 B
C++
#pragma once
|
|
#include <luna/OwnedPtr.h>
|
|
#include <ui/Canvas.h>
|
|
|
|
constexpr int BYTES_PER_PIXEL = 4;
|
|
|
|
class Screen
|
|
{
|
|
public:
|
|
static Result<void> open();
|
|
|
|
ui::Canvas& canvas()
|
|
{
|
|
return m_canvas;
|
|
}
|
|
|
|
int size() const
|
|
{
|
|
return m_size;
|
|
}
|
|
|
|
static Screen& the()
|
|
{
|
|
return s_the;
|
|
}
|
|
|
|
void sync();
|
|
|
|
private:
|
|
ui::Canvas m_canvas;
|
|
int m_size;
|
|
|
|
static Screen s_the;
|
|
};
|