PCanvas is missing accessors for its render qualities. Specifically, it should
be possible to compile and run the following tests, but it
currently isn't.
public void testDefaultRenderQualityIsHighByDefault() {
PCanvas canvas = new PCanvas();
assertEquals(PPaintContext.HIGH_QUALITY_RENDERING, canvas.getDefaultRenderQuality());
}
public void testAnimatingRenderQualityIsLowByDefault() {
PCanvas canvas = new PCanvas();
assertEquals(PPaintContext.LOW_QUALITY_RENDERING, canvas.getAnimatingRenderQuality());
}
public void testInteractingRenderQualityIsLowByDefault() {
PCanvas canvas = new PCanvas();
assertEquals(PPaintContext.LOW_QUALITY_RENDERING, canvas.getInteractingRenderQuality());
}
Original issue reported on code.google.com by allain.lalonde on 13 Jul 2009 at 7:00
Original issue reported on code.google.com by
allain.lalonde
on 13 Jul 2009 at 7:00