Jump to content

Too many WebGL contexts. Oldest context will be lost.


Salman
 Share

Recommended Posts

Hi! I'm working on a project where I have a Map scene. I remove and add this scene to the phaser game a lot because I have to populate map depending upon the data I provide to this scene. After updating the map many times, it just vanishes and doesn't render and it happens randomly. I'm creating some images and texts in the map scene that change depending upon the data I pass in Init function of the scene.

this.game.scene.remove('map');
let map = new Map();
this.game.scene.add('map',map,isLoaderComplete,mapData);

I'm also attaching a screen shot. Any help would be much appreciated, Thanks!

Capture.PNG

Link to comment
Share on other sites

The number of simultaneous webgl contexts is limited by browser so if you have multiple tabs open with a webgl context or a page with multiple webgl contexts they addup. Or you graphic card is limited, i don"t know ; post a demo or your code somewhere so people can test on their machine

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...