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

Method disableBlend

gui/qt/lcdwidget.cpp:217–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215}
216
217void LCDWidget::disableBlend() {
218 if (m_currFrame == &m_blendedFrame) {
219 m_mutex.lock();
220 m_currFrame = &m_renderedFrame;
221 m_mutex.unlock();
222 static QMetaMethod updateMethod = staticMetaObject.method(staticMetaObject.indexOfSlot("update()"));
223 updateMethod.invoke(this);
224 }
225}
226
227// called by the emu thread to draw the lcd
228bool LCDWidget::draw() {

Callers 1

debugRaiseMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected