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

Some rendering fixes.

This commit is contained in:
jules 2013-08-08 18:01:47 +01:00
parent a469fa6def
commit 7fb2533bb0
5 changed files with 27 additions and 15 deletions

View file

@ -105,11 +105,8 @@ void LowLevelGraphicsPostScriptRenderer::addTransform (const AffineTransform& /*
jassertfalse;
}
float LowLevelGraphicsPostScriptRenderer::getScaleFactor()
{
jassertfalse; //xxx
return 1.0f;
}
float LowLevelGraphicsPostScriptRenderer::getScaleFactor() { return 1.0f; }
float LowLevelGraphicsPostScriptRenderer::getTargetDeviceScaleFactor() { return 1.0f; }
bool LowLevelGraphicsPostScriptRenderer::clipToRectangle (const Rectangle<int>& r)
{