commenting never used code

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62237 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2009-10-03 19:58:15 +00:00
parent ab451f970c
commit 0cc67fd514

View File

@ -639,6 +639,9 @@ CGImageRef wxBitmapRefData::CreateCGImage() const
{
if ( m_depth != 1 && m_bitmapMask == NULL )
{
#if 0
// in order for this code to work properly, wxMask would have to invert black and white
// in the native bitmap
if ( m_bitmapMask )
{
CGImageRef tempImage = CGBitmapContextCreateImage( m_hBitmap );
@ -648,6 +651,7 @@ CGImageRef wxBitmapRefData::CreateCGImage() const
CGImageRelease(tempImage);
}
else
#endif
image = CGBitmapContextCreateImage( m_hBitmap );
}
else