JUCE Ver.: 8.0.4
iPadOS Ver.: 16.7.7
iPad: Model number: ML2M2KN/A A1652
Changed from JUCE Ver.: 7.0.12 to JUCE Ver.: 8.0.4.
Now suddenly the Red and Blue are changed when calling juce::Colour ? E.g
spectrImGraphcs.setColour
(
Colour((uint8)0
, (uint8)0
, (uint8)0xff)
);
gives the Colour Red when drawing arrows in spectrImGraphcs
and
spectrImGraphcs.setColour
(
Colour((uint8)0xff
, (uint8)0
, (uint8)0)
);
gives the Colour Blue when drawing arrows in spectrImGraphcs
and
spectrImGraphcs.setColour
(
Colour((uint8)0
, (uint8)0xff
, (uint8)0)
);
gives the Colour Green when drawing arrows in spectrImGraphcs
spectrImGraphcs is defined like this:
Image spectrogramImage{ Image::RGB, widthOfTuneWindow, hightOfTuneWindow, true, juce::SoftwareImageType{} };
juce::Graphics spectrImGraphcs{ spectrogramImage };
?
