Searched defs:m_image (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIFrameBuffer.cpp107 uchar *address() { return m_image.bits(); }
113 ulong bitsPerPixel() const { return m_image.depth(); }
115 ulong bytesPerLine() const { return m_image.bytesPerLine(); }
312 QImage m_image; member in class:UIFrameBufferPrivate
845 /* Directly update m_image if update fits: */
847 && uX + uWidth <= (ULONG)m_image.width()
848 && uY + uHeight <= (ULONG)m_image.height())
850 /* Copy to m_image: */
851 uchar *pu8Dst = m_image.bits() + uY * m_image
[all...]

Completed in 46 milliseconds