implemented a few more PSurface methods

This commit is contained in:
codeanticode
2014-11-15 17:15:03 -07:00
parent 1766260e29
commit 9a44cb85e3
3 changed files with 11 additions and 5 deletions

View File

@@ -630,7 +630,9 @@ public abstract class PGL {
private boolean needFBOLayer(boolean clear0) {
// TODO: need to revise this, on windows we might not want to use FBO layer
// even with anti-aliasing enabled...
// return !clear0 || fboLayerRequested || 1 < numSamples;
boolean res = !clear0 || fboLayerRequested || 1 < numSamples;
// System.err.println(res + " " + clear0 + " " + fboLayerRequested + " " + numSamples);
// return res;
return false;
}