mirror of
https://github.com/gpujs/gpu.js.git
synced 2026-01-18 16:04:10 +00:00
16 lines
335 B
HTML
Vendored
16 lines
335 B
HTML
Vendored
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>GPU.JS : Android test</title>
|
|
</head>
|
|
<body>
|
|
<script src="../../src/parser.js"></script>
|
|
<script src="../../src/gpu.js"></script>
|
|
<script>
|
|
document.write(new GPU().createKernel(function(){
|
|
return -this.thread.x / 5
|
|
}).dimensions([15, 1])()[0].join('<br/>'));
|
|
</script>
|
|
</body>
|
|
</html>
|