only update _videoFrameCanvas if accessing video

This commit is contained in:
Blair MacIntyre 2019-05-21 12:49:57 -04:00
Родитель 48260453ba
Коммит dedf3da67a
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -132,8 +132,10 @@ export default class CameraReality extends Reality {
canvasHeight = this._videoRenderHeight = height;
var cameraAspect = canvasWidth / canvasHeight;
this._videoFrameCanvas.width = width;
this._videoFrameCanvas.height = height;
if (this._videoFrameCanvas) {
this._videoFrameCanvas.width = width;
this._videoFrameCanvas.height = height;
}
}
this._setFovy(this._cameraFov / (Math.PI/180))