Hello All,
I am running a program that I have compiled with wxWindows, but when I run the application it comes up with one of the graphic images (background image) displayed, but then the other 3 images do not show up and I see an error message in my xterm:
fixme:bitblt:MaskBlt (2144,50,50,53,61,2376,0,0,2256,0,0,-1429471200): stub
fixme:bitblt:MaskBlt (2144,100,100,44,63,2380,0,0,2284,0,0,-1429471200): stub
fixme:bitblt:MaskBlt (2144,150,150,53,53,2384,0,0,2312,0,0,-1429471200): stub
I am using the latest release of wine, but not the CVS version.
Has this been fixed yet or is someone working on it?
Any help would be greatly appreciated. Thanks, Lonnie
On Tue, Mar 26, 2002 at 04:37:39PM -0500, Lonnie Cumberland wrote:
Hello All,
I am running a program that I have compiled with wxWindows, but when I run the application it comes up with one of the graphic images (background image) displayed, but then the other 3 images do not show up and I see an error message in my xterm:
fixme:bitblt:MaskBlt (2144,50,50,53,61,2376,0,0,2256,0,0,-1429471200): stub
fixme:bitblt:MaskBlt (2144,100,100,44,63,2380,0,0,2284,0,0,-1429471200): stub
fixme:bitblt:MaskBlt (2144,150,150,53,53,2384,0,0,2312,0,0,-1429471200): stub
I am using the latest release of wine, but not the CVS version.
Has this been fixed yet or is someone working on it?
No, it isn't fixed yet and i don't know if someone is working on it. As a quick fix, try to run your program with -winver win98, because MaskBlt is only inplemented on NT, W2K and XP.
bye michael
Hello Michael,
No luck!!
I tried it, but it is still giving me the same results.
I guess that I need to try and find a Bitblt::Maskblt() function to implement although I am not sure what it even does.
Cheer, Lonnie
On Tue, Mar 26, 2002 at 04:37:39PM -0500, Lonnie Cumberland wrote:
Hello All,
I am running a program that I have compiled with wxWindows, but when I run the application it comes up with one of the graphic images (background image) displayed, but then the other 3 images do not show up and I see an error message in my xterm:
fixme:bitblt:MaskBlt (2144,50,50,53,61,2376,0,0,2256,0,0,-1429471200): stub
fixme:bitblt:MaskBlt (2144,100,100,44,63,2380,0,0,2284,0,0,-1429471200): stub
fixme:bitblt:MaskBlt (2144,150,150,53,53,2384,0,0,2312,0,0,-1429471200): stub
I am using the latest release of wine, but not the CVS version.
Has this been fixed yet or is someone working on it?
No, it isn't fixed yet and i don't know if someone is working on it. As a quick fix, try to run your program with -winver win98, because MaskBlt is only inplemented on NT, W2K and XP.
bye michael -- Michael Stefaniuc Tel.: +49-711-96437-199 System Administration Fax.: +49-711-96437-111 Red Hat GmbH Email: [email protected] Hauptstaetterstr. 58 http://www.redhat.de/ D-70178 Stuttgart
Hello All,
I have recently been able to locate what might be a nice routine for the missing fixme:bitblt:MaskBlt errors but I am inclear on the next step of how to implement it.
More accurately, I am just not clear as to the proceedure that should be followed to add it, and test it, to my CVS version of Wine that I have downloaded onto my home machine.
Could someone please give me a little guidance on this?
Thanks, Lonnie
On Tue, Mar 26, 2002 at 04:37:39PM -0500, Lonnie Cumberland wrote:
Hello All,
I am running a program that I have compiled with wxWindows, but when I run the application it comes up with one of the graphic images (background image) displayed, but then the other 3 images do not show up and I see an error message in my xterm:
fixme:bitblt:MaskBlt (2144,50,50,53,61,2376,0,0,2256,0,0,-1429471200): stub
fixme:bitblt:MaskBlt (2144,100,100,44,63,2380,0,0,2284,0,0,-1429471200): stub
fixme:bitblt:MaskBlt (2144,150,150,53,53,2384,0,0,2312,0,0,-1429471200): stub
I am using the latest release of wine, but not the CVS version.
Has this been fixed yet or is someone working on it?
No, it isn't fixed yet and i don't know if someone is working on it. As a quick fix, try to run your program with -winver win98, because MaskBlt is only inplemented on NT, W2K and XP.
bye michael -- Michael Stefaniuc Tel.: +49-711-96437-199 System Administration Fax.: +49-711-96437-111 Red Hat GmbH Email: [email protected] Hauptstaetterstr. 58 http://www.redhat.de/ D-70178 Stuttgart
On Tue, Mar 26, 2002 at 09:54:56PM -0500, Lonnie Cumberland wrote:
Hello All,
I have recently been able to locate what might be a nice routine for the missing fixme:bitblt:MaskBlt errors but I am inclear on the next step of how to implement it.
More accurately, I am just not clear as to the proceedure that should be followed to add it, and test it, to my CVS version of Wine that I have downloaded onto my home machine.
Could someone please give me a little guidance on this?
Check out graphics/bitblt.c
Search search.microsoft.com.
AFAIK MaskBlt() is a "BitBlt() gone weird" ;-) It's not supported on Win9x, which is why it's not implemented yet.