hello is there a way i can easily resize the fbo if the ofToggleFullscreen is true? with out affecting the draw for some reason when i do this it deforms the objects in the draw
im declaring the fbo like this in setup
ofFboSettings e;
e.width = ofGetWidth();
e.height = ofGetHeight();
e.numSamples= 24;
e.internalformat = GL_RGBA;
e.useDepth = true;
e.depthStencilAsTexture = true;
e.maxFilter= 8;
env.allocate(e);
how it looks when ofToggleF…= false
how it looks when ofToggleF…= true