[solved] What is the current state of WebGL support?

Hi,

I am having some troubles making work all the tools for enabling WebGL support with TVM.
Emscripten seems to be moving toward Web Assembly and I am not sure about the support of asm.js in latest version of fastcomp.
So my question is: is the current version of TVM updated for the current version of fastcomp? Have you managed to compile TVM modules for WebGL recently?

Thank you in advance for your insight.

Okay, I figured it out.
WebGL is still working, the examples just needed some little tweaking in order to work (still working on some issues though).
In particular, passing

options = ["-s", "WASM=0", "-s", "USE_GLFW=3", "-s", "USE_WEBGL2=1", "-lglfw"]

to emscripten.create_js in the test examples helped solving most of the problems.