Skip to content

Commit 2238a13

Browse files
committed
Context Creationg Config attributes are default to Khronos spec for webgl context creation
1 parent 0c1c16d commit 2238a13

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/boot/Config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,10 +182,10 @@ var Config = new Class({
182182
this.fps = GetValue(config, 'fps', null);
183183

184184
// Renderer Settings
185-
this.pixelArt = GetValue(config, 'pixelArt', false);
185+
this.pixelArt = GetValue(config, 'pixelArt', true);
186186
this.autoResize = GetValue(config, 'autoResize', false);
187187
this.roundPixels = GetValue(config, 'roundPixels', false);
188-
this.transparent = GetValue(config, 'transparent', false);
188+
this.transparent = GetValue(config, 'transparent', true);
189189
this.clearBeforeRender = GetValue(config, 'clearBeforeRender', true);
190190
this.preserveDrawingBuffer = GetValue(config, 'preserveDrawingBuffer', false);
191191
this.failIfMajorPerformanceCaveat = GetValue(config, 'failIfMajorPerformanceCaveat', false);

0 commit comments

Comments
 (0)