Skip to content

Commit 48a936d

Browse files
authored
Merge branch 'master' into small-widgets-fixes
2 parents e89af2c + 1fe0925 commit 48a936d

File tree

51 files changed

+1482
-488
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1482
-488
lines changed

Examples/Applications/SkyboxViewer/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,10 +292,10 @@ function createVisualization(container, mapReader) {
292292
document.querySelector('body').appendChild(button);
293293
button.addEventListener('click', () => {
294294
if (button.textContent === 'Send To VR') {
295-
fullScreenRenderer.getOpenGLRenderWindow().startVR();
295+
fullScreenRenderer.getApiSpecificRenderWindow().startVR();
296296
button.textContent = 'Return From VR';
297297
} else {
298-
fullScreenRenderer.getOpenGLRenderWindow().stopVR();
298+
fullScreenRenderer.getApiSpecificRenderWindow().stopVR();
299299
button.textContent = 'Send To VR';
300300
}
301301
});

0 commit comments

Comments
 (0)