Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CORS support for textures #65

Open
AustinMontoya opened this issue Apr 2, 2012 · 0 comments
Open

Add CORS support for textures #65

AustinMontoya opened this issue Apr 2, 2012 · 0 comments

Comments

@AustinMontoya
Copy link

I ran into this problem when trying to load a model from another domain. The .dae came in fine, but a security error happened when trying to render the texture. Last year, CORS for webgl textures was briefly disabled because it actually was a security risk, but now Chrome and FF currently support the crossorigin attribute on Image to circumvent the problem.

I was able to bypass this issue by modifying GLGE.Texture.prototype.setSrc as following:

// ... snip ...
this.image=new Image();
this.image.crossOrigin = "anonymous"; // Allow cross-domain resource sharing for image
// ..rest of code ...

I'm not sure if this is by design or an oversight; however, any clarification would greatly be appreciated. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant