blob: 8612c70bb452b8b69baab55651bd4e27b280eab0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#include <lib/gdi/glcddc.h>
#include <lib/gdi/lcd.h>
#include <lib/base/init.h>
#include <lib/base/init_num.h>
gLCDDC *gLCDDC::instance;
gLCDDC::gLCDDC()
{
lcd = new eDBoxLCD();
instance=this;
update=1;
surface.x=lcd->size().width();
surface.y=lcd->size().height();
surface.bpp=8;
surface.bypp=1;
surface.stride=lcd->stride();
surface.data=lcd->buffer();
surface.clut.colors=256;
surface.clut.data=0;
m_pixmap = new gPixmap(&surface);
}
gLCDDC::~gLCDDC()
{
delete lcd;
instance=0;
}
void gLCDDC::exec(gOpcode *o)
{
switch (o->opcode)
{
case gOpcode::flush:
// if (update)
lcd->update();
default:
gDC::exec(o);
break;
}
}
void gLCDDC::setUpdate(int u)
{
update=u;
}
eAutoInitPtr<gLCDDC> init_gLCDDC(eAutoInitNumbers::graphic-1, "gLCDDC");
|