glfw-sys 8.0.0

An Open Source, multi-platform library for creating windows with OpenGL contexts and receiving input and events
Documentation
<!DOCTYPE html>
<!--
A simple file to check glfw on emscripten.
Just put this index.html + basic.js + basic.wasm files in the same directory and start a http server.

For example, run `cargo build --example=
-->
<html>
  <body>
    <canvas data-raw-handle="1" id="canvas"></canvas>
    <!-- you need this script to actually let sdl2/glfw library find the canvas for backing its window -->
    <script type="text/javascript">
      var Module = {
        canvas: (function () {
          // this is how we provide a canvas to our sdl2
          return document.getElementById("canvas");
        })(),
      };
    </script>
    <!-- the above scrit MUST BE loaded before the below generated by cargo. so, don't change the order of these tags -->
    <script src="basic.js"></script>
  </body>
</html>