Improve color handling approach

This commit is contained in:
schmelczerandras 2020-10-13 22:37:23 +02:00
parent e53ca905af
commit f29293c475
22 changed files with 259 additions and 181 deletions

View file

@ -1,3 +1,4 @@
import { vec4 } from 'gl-matrix';
import { StartupSettings } from './startup-settings';
/**
@ -7,5 +8,6 @@ export const defaultStartupSettings: StartupSettings = {
shadowTraceCount: 16,
paletteSize: 256,
ignoreWebGL2: false,
backgroundColor: vec4.fromValues(1, 1, 1, 1),
enableStopwatch: false,
};