Open nasser opened 13 years ago
Possible syntax:
smoothing false # sets FBO's samples to 0
smoothing true # sets FBO's samples to maximum i.e. ofFbo::maxSamples()
smoothing 4 # sets FBO's samples to 4
smoothing 5 # sets FBO's samples to 5
smoothing 6 # sets FBO's samples to 6
If this can get in for 0.4.0, that's great. But it shouldn't hold things up.
Get rid of code like this
and use FBO multisampling to implement smoothing. render everything to an FBO and then draw that to the window. the
smoothing
method will control the number of samples in the FBO.