1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Removed some override specifiers due to a Clang compiler bug.

This commit is contained in:
jules 2013-07-30 21:14:57 +01:00
parent e31ebbfbc9
commit 6629921a8b
2 changed files with 30 additions and 30 deletions

View file

@ -1402,7 +1402,7 @@ public:
//==============================================================================
template <typename IteratorType>
void renderImageTransformed (IteratorType& iter, const Image& src, const int alpha,
const AffineTransform& trans, Graphics::ResamplingQuality quality, bool tiledFill) const
const AffineTransform& trans, Graphics::ResamplingQuality, bool tiledFill) const
{
state->shaderQuadQueue.flush();
OpenGLTextureFromImage image (src);
@ -1431,7 +1431,7 @@ public:
}
template <typename IteratorType>
void fillWithGradient (IteratorType& iter, ColourGradient& gradient, const AffineTransform& trans, bool isIdentity) const
void fillWithGradient (IteratorType& iter, ColourGradient& gradient, const AffineTransform& trans, bool /*isIdentity*/) const
{
state->setShaderForGradientFill (gradient, trans, 0, nullptr);
state->shaderQuadQueue.add (iter, fillType.colour.getPixelARGB());