examples/GLES3-GLFW-video-demo/README.md
This directory contains a standard Video-Demo example using work-in-progress GLES3 renderer. While it still needs refinement, the renderer is already functional and demonstrates the core rendering pipeline.
Current features
Currently builds on:
Windowing and platform support
This example uses GLFW, and the renderer is framework agnostic
Cmake build is the easiest way to build it:
mkdir build
cmake -S . -B ./build
For Emscripten the build is a bit custom, but it depends on CMakeBuild to install header-stb dependency. So you still need to build it with CMake first.
And then you have to source the Emscripten SDK:
source /path/to/emscripten/emsdk/emsdk_env.sh
Then build it with hand-crafted Makefile.emscripten:
make -f Makefile.emscripten test
and then navigate to http://localhost:8080