You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When rendering with either the P2D or P3D renderers, there is a noticeable pause on the first frame of the sketch if background is not called. Normally this pause is not very long, but this pause becomes more noticeable at higher resolutions and if multiple PGraphics objects are used as buffers.
Minimal Code to Reproduce
voidsetup()
{
fullScreen( P2D );
}
voiddraw()
{
fill( frameCount % 2 * 255 ); //Flash every odd framerect( 0, 0, width, height );
//A workaround would be to replace the above lines with background(...);
}
With the testing code above, the amount of time to render the 2nd frame is ~40ms when callBackground is false and ~4000ms when callBackground is true (without buffers). Adding buffers increases the time by multiple seconds.
Your Environment
Processing version: 3.5.4 (have not tested with Processing 4)
Operating System and OS version: Windows 10.0.19043 Build 19043
Other information: Intel Core i5-10210U with Intel UHD Graphics 620
The text was updated successfully, but these errors were encountered:
Created by: JeremyEastham
Description
When rendering with either the P2D or P3D renderers, there is a noticeable pause on the first frame of the sketch if
background
is not called. Normally this pause is not very long, but this pause becomes more noticeable at higher resolutions and if multiplePGraphics
objects are used as buffers.Minimal Code to Reproduce
Testing Code
With the testing code above, the amount of time to render the 2nd frame is ~40ms when
callBackground
is false and ~4000ms whencallBackground
is true (without buffers). Adding buffers increases the time by multiple seconds.Your Environment
The text was updated successfully, but these errors were encountered: