systemjs/test/test-shader.html

20 lines
626 B
HTML

<!doctype html>
<script src="../../es6-module-loader/tmp/es6-module-loader.js" type="text/javascript"></script>
<script src="../dist/system.js" type="text/javascript"></script>
<script>
System.paths = {
'*': 'https://registry.jspm.io/*.js',
'github:*': 'https://github.jspm.io/*.js',
'npm:*': 'https://npm.jspm.io/*.js',
'~/*': '*.js'
};
System.import('npm:glsl-exports@^0.0.0').then(function(s) {
// System.import('npm:gl-vao@0.0').then(function(s) {
console.log(s);
}).catch(function(e) {
setTimeout(function() {
throw e;
}, 1);
})
</script>