FB::PluginWindowlessWin* pWin = (FB::PluginWindowlessWin*)pScrnInfo;
HDC hDC = pWin->getHDC()
...
BITMAPINFO bm;
bm.bmiHeader.biSize =
sizeof (BITMAPINFOHEADER);
bm.bmiHeader.biPlanes = 1;
bm.bmiHeader.biBitCount = 24;
bm.bmiHeader.biSizeImage = 3 * iSrcCX * iSrcCY;
bm.bmiHeader.biWidth = iSrcCX;
bm.bmiHeader.biHeight = iSrcCY;
bm.bmiHeader.biCompression = BI_RGB;
SetStretchBltMode(hDC, HALFTONE);
...
StretchDIBits(hDC, iDrawX, iDrawY, iDrawCX, iDrawCY, 0,0, iSrcCX, iSrcCY, pData, &bm, DIB_RGB_COLORS,SRCCOPY);
Has anyone encountered this and able to solve it?
Thanks
John
--
---
You received this message because you are subscribed to the Google Groups "firebreath-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to firebreath-de...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to the Google Groups "firebreath-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to firebreath-de...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
<ChromeColorWrong.PNG>
Richard, could you be a little more specific on what you mean by adding a div? Thanks....
Ah I see... Which reminds me I probably didn't encounter this in MediaElement.is as I modded it to load my player . ME.js has a black backgrounds. Was wondering how did I not see such problem to date. Thanks Richard...
Yup, the black background did solve the problem. However, I'm gonna try what Neil is suggesting so as to make it more independent.
--