cleanup of raw access to bitmaps:
1. remove UseAlpha() on platforms that don't need it and call it automatically from ~wxPixelData instead of requiring explicit call; deprecate wxPixelData::UseAlpha() 2. don't call UngetRawData() if GetRawData() failed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47295 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -397,7 +397,6 @@ public:
|
||||
wxLogError(_T("Failed to gain raw access to bitmap data"));
|
||||
return;
|
||||
}
|
||||
data.UseAlpha();
|
||||
wxAlphaPixelData::Iterator p(data);
|
||||
for ( int y = 0; y < SIZE; ++y )
|
||||
{
|
||||
@@ -421,7 +420,6 @@ public:
|
||||
return;
|
||||
}
|
||||
|
||||
data.UseAlpha();
|
||||
wxAlphaPixelData::Iterator p(data);
|
||||
|
||||
for ( int y = 0; y < REAL_SIZE; ++y )
|
||||
|
Reference in New Issue
Block a user