Hello guys ans happy new year =D
In order to solve cross-origin blocks, I created a PHP script which transfer images from other subdomains but the problem is that navigators implements a Simultaneous TCP connexions Limit (6 for Chrom and Firefox).
To implement CORS I added these lines in my PHP script :
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Credentials: true');
Exists another way to bypass cross-origin blocks ? (download the image in the DOM and use it for WebGL ?)
Thanks