https://github.com/kripken/emscripten
Raw File
Tip revision: 52579fa1f5140ee0573e8d32f41bdd553d9cbede authored by Jukka Jylänki on 10 January 2019, 10:10:54 UTC
Move legacy GL emulation into its own file library_glemu.js. Restore glDrawArrays() and glDrawElements() to be closure minified.
Tip revision: 52579fa
emcc
#!/usr/bin/env python

# This script should work in python 2 *or* 3. It loads the main code using
# python_selector, which may pick a different version.

from tools import python_selector

import sys

if __name__ == '__main__':
  python_selector.run(__file__)
back to top