Skip to content

A port of the Glitter OpenGL boilerplate to compile properly using WASM

Notifications You must be signed in to change notification settings

HarryLovesCode/WebAssembly-WebGL-Glitter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Glitter WASM WebGL

Fair warning, this is more of a playground than an actual project. It is functional, but rough around the edges. On my list is to add a gh-pages live demo branch.

Screenshot

Summary

Glitter is a dead simple boilerplate for OpenGL, intended as a starting point for the tutorials on learnopengl.com and open.gl. Glitter compiles and statically links every required library, so you can jump right into doing what you probably want: how to get started with OpenGL.

Getting Started

Please read Getting started with WebAssembly before you begin. Make sure to pay special attention to the section on environment variables if you aren't on Windows.

Now, start by cloning this repository, making sure to pass the --recursive flag to grab all the dependencies. If you forgot, then you can git submodule update --init instead.

git clone --recursive https://github.com/HarryLovesCode/WebAssembly-WebGL-Glitter
cd Glitter
mkdir Build
cd Build

We'll use emcmake to generate the Emscripten make files.

emcmake cmake ..
emmake make

You can then serve the files using emrun.

emrun Glitter/Glitter.html

Emscripten flags

You'll see in the CMakeLists.txt file that we set the flags for Emscripten twice. The second time with Emscripten flags. These ones are worth explaining:

  • -s USE_WEBGL2=1 → Enables WebGL 2
  • -s WASM=1 → Forces WebAssembly output instead of asm.js
  • -s ALLOW_MEMORY_GROWTH=1 → Emscripten normally allocates a fixed amount of memory to run. By enabling this, you allow that buffer to grow. For example: you need to load a mesh, but don't know the size of it ahead of time.
  • --preload-file ./FOLDER/FILE → While not used in this example, you can preload items into the virtual file system at compile time.
  • --embed-file ./FOLDER/FILE → Again, not used in this example, but this allows you to essentially require files.

Notable Differences

  1. We don't include GLFW as a submodule as Emscripten has its own implementation of GLFW 3.
  2. GLAD is not included per the same reason as GLFW, it's quite frankly unnecessary with Emscripten. You only need to say #include <GLES3/gl3.h>.

License

The MIT License (MIT)

Copyright (c) 2018 Kevin Fung & Harry Gould

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A port of the Glitter OpenGL boilerplate to compile properly using WASM

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published