processing-android
processing-android copied to clipboard
is MSAA supported when i use P2DX?
I found the function "smooth(int value)" in PApple.java is not working when i use P2DX or P2D. Then I read the source finding the code below: private void createFBOLayer() { ...... if (hasFboMultisampleSupport()) { int maxs = maxSamples(); numSamples = PApplet.min(reqNumSamples, maxs); } else { numSamples = 1; } ..... } numSamples is always 1 and it can never be bigger than 1. Does this mean MSAA not supported? I appreciate if someone could reply