1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Tidied up some linux messaging code. Fixed a couple of small graphic bugs.

This commit is contained in:
Julian Storer 2010-05-30 12:56:29 +01:00
parent 0c541cfba2
commit 1baaa016bd
7 changed files with 493 additions and 565 deletions

View file

@ -1983,13 +1983,13 @@ public:
else
{
Path p;
p.addRectangle (0.0f, 0.0f, (float) srcClip.getWidth(), (float) srcClip.getHeight());
p.addRectangle (srcClip);
SoftwareRendererClasses::ClipRegionBase::Ptr c (clip->clone());
c = c->clipToPath (p, transform);
if (c != 0)
c->renderImageTransformed (destData, srcData, alpha, transform, betterQuality, true);
c->renderImageTransformed (destData, srcData, alpha, transform, betterQuality, false);
}
}