Revert "Change default quality to 2 and reduce goodframes check to 100."

This reverts commit 178b66751a.
This commit is contained in:
Mr.doob 2021-08-15 14:48:49 +01:00
parent afab138efa
commit a92a859933
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ void main( void ) {
// Greetings to Iq/RGBA! ;)
var quality = 2;
var quality = 1;
var toolbar, showButton, timeButton, compileButton, panButton, fullscreenButton, compileTimer, errorLines = [];
var code, canvas, gl, buffer, currentProgram, vertexPosition, screenVertexPosition,
parameters = { startTime: Date.now(), time: 0, mouseX: 0.5, mouseY: 0.5, screenWidth: 0, screenHeight: 0 },
@ -856,7 +856,7 @@ void main( void ) {
goodframes ++;
if ( goodframes > 100 ) {
if ( goodframes > 500 ) {
goodframes = 0;
quality -= 0.1;