mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-27 02:20:05 +00:00
PixelARGB compile fix for PPC targets.
This commit is contained in:
parent
75d72d6323
commit
ad1becb00b
3 changed files with 2 additions and 9 deletions
|
|
@ -269,7 +269,7 @@ private:
|
|||
struct Components
|
||||
{
|
||||
#if JUCE_BIG_ENDIAN
|
||||
uint8 a : 8, r : 8, g : 8, b : 8;
|
||||
uint8 a, r, g, b;
|
||||
#else
|
||||
uint8 b, g, r, a;
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -101,11 +101,7 @@ class LassoComponent : public Component
|
|||
{
|
||||
public:
|
||||
//==============================================================================
|
||||
/** Creates a Lasso component.
|
||||
|
||||
The fill colour is used to fill the lasso'ed rectangle, and the outline
|
||||
colour is used to draw a line around its edge.
|
||||
*/
|
||||
/** Creates a Lasso component. */
|
||||
explicit LassoComponent (const int outlineThickness_ = 1)
|
||||
: source (nullptr),
|
||||
outlineThickness (outlineThickness_)
|
||||
|
|
|
|||
|
|
@ -308,7 +308,4 @@ private:
|
|||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif // __JUCE_SELECTEDITEMSET_JUCEHEADER__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue