-
-
Notifications
You must be signed in to change notification settings - Fork 36.5k
Expand file tree
/
Copy pathwebgpu_sandbox.html
More file actions
252 lines (170 loc) · 6.71 KB
/
Copy pathwebgpu_sandbox.html
File metadata and controls
252 lines (170 loc) · 6.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<html lang="en">
<head>
<title>three.js webgpu - sandbox</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
</head>
<body>
<div id="info">
<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> webgpu - sandbox
</div>
<script type="importmap">
{
"imports": {
"three": "../build/three.webgpu.js",
"three/webgpu": "../build/three.webgpu.js",
"three/tsl": "../build/three.tsl.js",
"three/addons/": "./jsm/"
}
}
</script>
<script type="module">
import * as THREE from 'three';
import { time, vec2, uv, texture, mix, checker, normalLocal, positionLocal, color, oscSine, attribute } from 'three/tsl';
import { KTX2Loader } from 'three/addons/loaders/KTX2Loader.js';
let camera, scene, renderer;
let box;
init();
async function init() {
camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 0.1, 10 );
camera.position.z = 4;
scene = new THREE.Scene();
scene.background = new THREE.Color( 0x222222 );
//
renderer = new THREE.WebGPURenderer( { antialias: true } );
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
renderer.setAnimationLoop( animate );
document.body.appendChild( renderer.domElement );
// textures
const textureLoader = new THREE.TextureLoader();
const uvTexture = textureLoader.load( './textures/uv_grid_opengl.jpg' );
uvTexture.wrapS = THREE.RepeatWrapping;
uvTexture.wrapT = THREE.RepeatWrapping;
uvTexture.name = 'uv_grid';
const textureDisplace = textureLoader.load( './textures/transition/transition1.png' );
textureDisplace.wrapS = THREE.RepeatWrapping;
textureDisplace.wrapT = THREE.RepeatWrapping;
const ktxLoader = await new KTX2Loader()
.setTranscoderPath( {
js: 'jsm/libs/basis/basis_transcoder.js',
wasm: 'jsm/libs/basis/basis_transcoder.wasm'
} )
.detectSupportAsync( renderer );
const ktxTexture = await ktxLoader.loadAsync( './textures/ktx2/2d_uastc.ktx2' );
// box mesh
const geometryBox = new THREE.BoxGeometry();
const materialBox = new THREE.MeshBasicNodeMaterial();
// birection speed
const timerScaleNode = time.mul( vec2( - 0.5, 0.1 ) );
const animateUV = uv().add( timerScaleNode );
const textureNode = texture( uvTexture, animateUV );
materialBox.colorNode = mix( textureNode, checker( animateUV ), 0.5 );
// test uv 2
//geometryBox.setAttribute( 'uv1', geometryBox.getAttribute( 'uv' ) );
//materialBox.colorNode = texture( uvTexture, uv( 1 ) );
box = new THREE.Mesh( geometryBox, materialBox );
box.position.set( 0, 1, 0 );
scene.add( box );
// displace example
const geometrySphere = new THREE.SphereGeometry( .5, 64, 64 );
const materialSphere = new THREE.MeshBasicNodeMaterial();
const displaceY = texture( textureDisplace ).x.mul( 0.25 );
const displace = normalLocal.mul( displaceY );
materialSphere.colorNode = displaceY;
materialSphere.positionNode = positionLocal.add( displace );
const sphere = new THREE.Mesh( geometrySphere, materialSphere );
sphere.position.set( - 2, - 1, 0 );
scene.add( sphere );
// data texture
const geometryPlane = new THREE.PlaneGeometry();
const materialPlane = new THREE.MeshBasicNodeMaterial();
materialPlane.colorNode = texture( createDataTexture() ).add( color( 0x0000FF ) );
materialPlane.transparent = true;
const plane = new THREE.Mesh( geometryPlane, materialPlane );
plane.position.set( 0, - 1, 0 );
scene.add( plane );
// compressed texture
const materialCompressed = new THREE.MeshBasicNodeMaterial();
materialCompressed.colorNode = texture( ktxTexture );
materialCompressed.emissiveNode = oscSine().mix( color( 0x663300 ), color( 0x0000FF ) );
materialCompressed.alphaTestNode = oscSine();
materialCompressed.transparent = true;
const geo = flipY( new THREE.PlaneGeometry() );
const planeCompressed = new THREE.Mesh( geo, materialCompressed );
planeCompressed.position.set( - 2, 1, 0 );
scene.add( planeCompressed );
// points
const points = [];
for ( let i = 0; i < 1000; i ++ ) {
const point = new THREE.Vector3().random().subScalar( 0.5 );
points.push( point );
}
const geometryPoints = new THREE.BufferGeometry().setFromPoints( points );
const materialPoints = new THREE.PointsNodeMaterial();
materialPoints.colorNode = positionLocal.mul( 3 );
const pointCloud = new THREE.Points( geometryPoints, materialPoints );
pointCloud.position.set( 2, - 1, 0 );
scene.add( pointCloud );
// lines
const geometryLine = new THREE.BufferGeometry().setFromPoints( [
new THREE.Vector3( - 0.5, - 0.5, 0 ),
new THREE.Vector3( 0.5, - 0.5, 0 ),
new THREE.Vector3( 0.5, 0.5, 0 ),
new THREE.Vector3( - 0.5, 0.5, 0 ),
new THREE.Vector3( - 0.5, - 0.5, 0 )
] );
geometryLine.setAttribute( 'color', geometryLine.getAttribute( 'position' ) );
const materialLine = new THREE.LineBasicNodeMaterial();
materialLine.colorNode = attribute( 'color' );
const line = new THREE.Line( geometryLine, materialLine );
line.position.set( 2, 1, 0 );
scene.add( line );
window.addEventListener( 'resize', onWindowResize );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
function animate() {
if ( box ) {
box.rotation.x += 0.01;
box.rotation.y += 0.02;
}
renderer.render( scene, camera );
}
function createDataTexture() {
const color = new THREE.Color( 0xff0000 );
const width = 512;
const height = 512;
const size = width * height;
const data = new Uint8Array( 4 * size );
const r = Math.floor( color.r * 255 );
const g = Math.floor( color.g * 255 );
const b = Math.floor( color.b * 255 );
for ( let i = 0; i < size; i ++ ) {
const stride = i * 4;
data[ stride ] = r;
data[ stride + 1 ] = g;
data[ stride + 2 ] = b;
data[ stride + 3 ] = 255;
}
const texture = new THREE.DataTexture( data, width, height, THREE.RGBAFormat );
texture.needsUpdate = true;
return texture;
}
/*
* Correct UVs to be compatible with `flipY=false` textures.
*/
function flipY( geometry ) {
const uv = geometry.attributes.uv;
for ( let i = 0; i < uv.count; i ++ ) {
uv.setY( i, 1 - uv.getY( i ) );
}
return geometry;
}
</script>
</body>
</html>