blob: 530c160940edb1e171cb011d7715c4f86bd89298 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
namespace kms
{
class DumbFramebuffer;
void draw_color_bar(kms::DumbFramebuffer& buf, int old_xpos, int xpos, int width);
void draw_test_pattern(DumbFramebuffer& fb);
}
|