1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-08 04:20:09 +00:00

CoreAudio fix.

This commit is contained in:
Julian Storer 2010-03-08 10:06:43 +00:00
parent 8b7f38f30c
commit 6b0640d2b9
6 changed files with 32 additions and 32 deletions

View file

@ -36,7 +36,7 @@ const int juce_edgeTableDefaultEdgesPerLine = 32;
//==============================================================================
EdgeTable::EdgeTable (const Rectangle<int>& bounds_,
const Path& path, const AffineTransform& transform) throw()
const Path& path, const AffineTransform& transform)
: bounds (bounds_),
maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine),
lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1),
@ -110,7 +110,7 @@ EdgeTable::EdgeTable (const Rectangle<int>& bounds_,
sanitiseLevels (path.isUsingNonZeroWinding());
}
EdgeTable::EdgeTable (const Rectangle<int>& rectangleToAdd) throw()
EdgeTable::EdgeTable (const Rectangle<int>& rectangleToAdd)
: bounds (rectangleToAdd),
maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine),
lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1),
@ -134,7 +134,7 @@ EdgeTable::EdgeTable (const Rectangle<int>& rectangleToAdd) throw()
}
}
EdgeTable::EdgeTable (const RectangleList& rectanglesToAdd) throw()
EdgeTable::EdgeTable (const RectangleList& rectanglesToAdd)
: bounds (rectanglesToAdd.getBounds()),
maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine),
lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1),
@ -168,7 +168,7 @@ EdgeTable::EdgeTable (const RectangleList& rectanglesToAdd) throw()
sanitiseLevels (true);
}
EdgeTable::EdgeTable (const float x, const float y, const float w, const float h) throw()
EdgeTable::EdgeTable (const float x, const float y, const float w, const float h)
: bounds (Rectangle<int> ((int) floorf (x), roundToInt (y * 256.0f) >> 8, 2 + (int) w, 2 + (int) h)),
maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine),
lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1),
@ -243,13 +243,13 @@ EdgeTable::EdgeTable (const float x, const float y, const float w, const float h
}
}
EdgeTable::EdgeTable (const EdgeTable& other) throw()
EdgeTable::EdgeTable (const EdgeTable& other)
: table (0)
{
operator= (other);
}
EdgeTable& EdgeTable::operator= (const EdgeTable& other) throw()
EdgeTable& EdgeTable::operator= (const EdgeTable& other)
{
bounds = other.bounds;
maxEdgesPerLine = other.maxEdgesPerLine;
@ -261,7 +261,7 @@ EdgeTable& EdgeTable::operator= (const EdgeTable& other) throw()
return *this;
}
EdgeTable::~EdgeTable() throw()
EdgeTable::~EdgeTable()
{
}