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

Removed methods Graphics::getCurrentFont and Graphics::getCurrentColour, because these methods will become impossible for future native drawing contexts. This required a couple of minor tweaks to LookAndFeel and Drawable methods. Also fixed native CoreGraphics drawing of transparent windows.

This commit is contained in:
Julian Storer 2009-10-31 15:26:22 +00:00
parent 3c32eda726
commit 1e1c9944c9
18 changed files with 114 additions and 343 deletions

View file

@ -79,10 +79,6 @@ public:
void blendImage (const Image& sourceImage, int destX, int destY, int destW, int destH,
int sourceX, int sourceY, float alpha);
void blendImageRescaling (const Image& sourceImage, int destX, int destY, int destW, int destH,
int sourceX, int sourceY, int sourceW, int sourceH,
float alpha, const Graphics::ResamplingQuality quality);
void blendImageWarping (const Image& sourceImage, int srcClipX, int srcClipY, int srcClipW, int srcClipH,
const AffineTransform& transform,
float alpha, const Graphics::ResamplingQuality quality);