Make the background of the canvas black

This commit is contained in:
Ehsan Akhgari 2012-01-24 17:07:14 -05:00
Родитель d495fd27c2
Коммит ca8db28497
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -511,6 +511,9 @@ var LibraryGLUT = {
var ctx = Module.canvas.getContext('experimental-webgl');
if (!ctx) throw 'Could not create canvas :(';
Module.ctx = ctx;
// Set the background of the canvas to black, because glut gives us a
// window which has a black background by default.
Module.canvas.style.backgroundColor = "black";
} catch (e) {
Module.print('(canvas not available)');
}