You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thebookofshaders/edit.html

37 lines
1012 B
HTML

10 years ago
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
9 years ago
<title>GLSL Editor</title>
10 years ago
<!-- GLSL Canvas -->
<script type="text/javascript" src="https://rawgit.com/patriciogonzalezvivo/glslCanvas/master/build/GlslCanvas.min.js"></script>
10 years ago
<style>
body {
9 years ago
height: 100%;
margin: 0;
10 years ago
background: #272822;
}
9 years ago
#glsl_editor {
height: 100%;
10 years ago
}
</style>
</head>
<body>
9 years ago
<div id="glsl_editor"></div>
9 years ago
</body>
9 years ago
<link type="text/css" rel="stylesheet" href="https://rawgit.com/patriciogonzalezvivo/glslEditor/gh-pages/build/css/main.css">
<script type="application/javascript" src="https://rawgit.com/patriciogonzalezvivo/glslEditor/gh-pages/build/js/glslEditor.js"></script>
9 years ago
<script type="text/javascript">
window.glslEditor = new GlslEditor('#glsl_editor', {
viewSize: 500,
theme: 'monokai',
multipleBuffers: true,
watchHash: true,
fileDrops: true,
menu: true
});
9 years ago
</script>
10 years ago
</html>