-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
6 changed files
with
72 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// @flow | ||
|
||
import window from './window'; | ||
|
||
const exported = { | ||
supported: false, | ||
testSupport | ||
}; | ||
|
||
export default exported; | ||
|
||
let glForTesting; | ||
let webpCheckComplete = false; | ||
let webpImgTest; | ||
|
||
if (window.document) { | ||
webpImgTest = window.document.createElement('img'); | ||
webpImgTest.onload = function() { | ||
if (glForTesting) testWebpTextureUpload(glForTesting); | ||
glForTesting = null; | ||
}; | ||
webpImgTest.onerror = function() { | ||
webpCheckComplete = true; | ||
glForTesting = null; | ||
}; | ||
webpImgTest.src = 'data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAQAAAAfQ//73v/+BiOh/AAA='; | ||
} | ||
|
||
function testSupport(gl: WebGLRenderingContext) { | ||
if (webpCheckComplete || !webpImgTest) return; | ||
|
||
if (!webpImgTest.complete) { | ||
glForTesting = gl; | ||
return; | ||
} | ||
|
||
testWebpTextureUpload(gl); | ||
} | ||
|
||
function testWebpTextureUpload(gl: WebGLRenderingContext) { | ||
// Edge 18 supports WebP but not uploading a WebP image to a gl texture | ||
// Test support for this before allowing WebP images. | ||
// https://github.com/mapbox/mapbox-gl-js/issues/7671 | ||
const texture = gl.createTexture(); | ||
gl.bindTexture(gl.TEXTURE_2D, texture); | ||
|
||
try { | ||
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, webpImgTest); | ||
|
||
// The error does not get triggered in Edge if the context is lost | ||
if (gl.isContextLost()) return; | ||
|
||
exported.supported = true; | ||
} catch (e) { | ||
// Catch "Unspecified Error." in Edge 18. | ||
} | ||
|
||
gl.deleteTexture(texture); | ||
|
||
webpCheckComplete = true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters