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.
28 lines
518 B
HTML
28 lines
518 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title> draw </title>
|
|
</head>
|
|
|
|
<body onload="main()">
|
|
<canvas id="gl-canvas" width="1024" height="768">Oops!</canvas>
|
|
<script src="webgl.js"></script>
|
|
</body>
|
|
|
|
<script id="vertex-shader" type="x-shader/x-vertex">
|
|
attribute vec4 a_Position;
|
|
|
|
void main() {
|
|
gl_Position = a_Position;
|
|
gl_PointSize = 10.0;
|
|
}
|
|
</script>
|
|
|
|
<script id="fragment-shader" type="x-shader/x-fragment">
|
|
void main() {
|
|
gl_FragColor = vec4(0.0, 0.3, 0.5, 1.0);
|
|
}
|
|
</script>
|
|
</html>
|