You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run Cesium Viewer in IE and you'll get the below error. This does not happen in 1.4
RuntimeError: Vertex shader failed to compile. Compile log: Shader compilation errors
(0, 0): Function 'get2DYPositionFraction' is declared and used but not defined
Error
at RuntimeError (http://localhost:8080/Source/Core/RuntimeError.js:42:13)
at createAndLinkProgram (http://localhost:8080/Source/Renderer/ShaderProgram.js:503:17)
at initialize (http://localhost:8080/Source/Renderer/ShaderProgram.js:689:9)
at ShaderProgram.prototype._bind (http://localhost:8080/Source/Renderer/ShaderProgram.js:706:9)
at beginDraw (http://localhost:8080/Source/Renderer/Context.js:1793:9)
at Context.prototype.draw (http://localhost:8080/Source/Renderer/Context.js:1860:9)
at DrawCommand.prototype.execute (http://localhost:8080/Source/Renderer/DrawCommand.js:185:9)
at executeCommand (http://localhost:8080/Source/Scene/Scene.js:1050:13)
at executeCommands (http://localhost:8080/Source/Scene/Scene.js:1279:17)
at render (http://localhost:8080/Source/Scene/Scene.js:1377:9)
The text was updated successfully, but these errors were encountered:
Fixes#2358
A function needed only in 2D mode was not being included in 3D. Other
browsers were ok with this because the functions that called the missing
one were never called, but IE had a problem with it.
Run Cesium Viewer in IE and you'll get the below error. This does not happen in 1.4
The text was updated successfully, but these errors were encountered: