MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / draw

Method draw

gui/qt/debugger/visualizerdisplaywidget.cpp:27–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27void VisualizerDisplayWidget::draw() {
28 if (!guiEmuValid) {
29 return;
30 }
31
32 emu_set_lcd_ptrs(&m_data, &m_data_end, m_width, m_height, m_upbase, m_control, false);
33 emu_lcd_drawmem(m_image->bits(), m_data, m_data_end, m_control, m_size);
34 update();
35}
36
37void VisualizerDisplayWidget::paintEvent(QPaintEvent*) {
38 if (!guiEmuValid) {

Callers

nothing calls this directly

Calls 2

emu_set_lcd_ptrsFunction · 0.85
emu_lcd_drawmemFunction · 0.85

Tested by

no test coverage detected