Lines Matching defs:uHeight

199       * @param        uHeight   Height of the guest display, in pixels.
202 STDMETHOD(NotifyChange)(ULONG uScreenId, ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight);
208 * @param uHeight Height of the update rectangle, in pixels.
211 STDMETHOD(NotifyUpdate)(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight);
217 * @param uHeight Height of the update rectangle, in pixels.
221 STDMETHOD(NotifyUpdateImage)(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight, ComSafeArrayIn(BYTE, image));
225 * @param uHeight Height of the guest display, in pixels.
230 STDMETHOD(VideoModeSupported)(ULONG uWidth, ULONG uHeight, ULONG uBPP, BOOL *pbSupported);
731 STDMETHODIMP UIFrameBufferPrivate::NotifyChange(ULONG uScreenId, ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight)
746 (unsigned long)uWidth, (unsigned long)uHeight));
773 (unsigned long)uWidth, (unsigned long)uHeight));
774 emit sigNotifyChange(uWidth, uHeight);
786 STDMETHODIMP UIFrameBufferPrivate::NotifyUpdate(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight)
797 (unsigned long)uWidth, (unsigned long)uHeight));
811 (unsigned long)uWidth, (unsigned long)uHeight));
813 emit sigNotifyUpdate(uX, uY, uWidth, uHeight);
823 ULONG uWidth, ULONG uHeight,
837 (unsigned long)uWidth, (unsigned long)uHeight));
848 && uY + uHeight <= (ULONG)m_image.height())
854 for (h = 0; h < uHeight; ++h)
865 (unsigned long)uWidth, (unsigned long)uHeight));
866 emit sigNotifyUpdate(uX, uY, uWidth, uHeight);
876 STDMETHODIMP UIFrameBufferPrivate::VideoModeSupported(ULONG uWidth, ULONG uHeight, ULONG uBPP, BOOL *pfSupported)
882 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight));
894 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight));
911 && (uHeight > (ULONG)screenSize.height())
912 && (uHeight > (ULONG)height()))
915 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight, *pfSupported ? "TRUE" : "FALSE"));