mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-05 03:50:07 +00:00
Changes to Image::BitmapData constructors, replacing the bool with a more explicit enum for the read/write mode. Some win32 dLL declarator changes. Android work. Small Quicktime fix.
This commit is contained in:
parent
1d215fa865
commit
3dfbb0d713
37 changed files with 1216 additions and 431 deletions
|
|
@ -336,7 +336,7 @@ public:
|
|||
|
||||
@see CodeDocument, SyntaxAnalyser
|
||||
*/
|
||||
class Iterator
|
||||
class JUCE_API Iterator
|
||||
{
|
||||
public:
|
||||
Iterator (CodeDocument* document);
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ public:
|
|||
const int height = getHeight() / 2;
|
||||
colours = Image (Image::RGB, width, height, false);
|
||||
|
||||
Image::BitmapData pixels (colours, true);
|
||||
Image::BitmapData pixels (colours, Image::BitmapData::writeOnly);
|
||||
|
||||
for (int y = 0; y < height; ++y)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue