Notebook - Welcome to Notebook

Contact/Report Bugs
You can contact me at: bkenwright@xbdev.net












WebGPU Example Depth buffer accessing and drawing debugging visualizing document body style height 600px get some model data use json as it s easy to load setup let response await fetch var scripts skull json let json await response json console log vertices json vertices length console log faces json faces length console log normals json normals length get some bounds for the model doesn t go off screen let min x 10000 y 10000 z 10000 let max x 10000 y 10000 z 10000 for let i 0 i json vertices length 3 i min x Math min min x json vertices i 3 0 min y Math min min y json vertices i 3 1 min z Math min min z json vertices i 3 2 max x Math max max x json vertices i 3 0 max y Math max max y json vertices i 3 1 max z Math max max z json vertices i 3 2 let delta x max x min x y max y min y z max z min z let middle x min x delta x 0 5 y min y delta y 0 5 z min z delta z 0 5 let dist Math sqrt delta x delta x delta y delta y delta z delta z console log model dist dist console log min min x min y min z console log max max x max y max z console log middle middle x middle y middle z var script document createElement script script type text javascript script async false script src https cdnjs cloudflare com ajax libs gl matrix 2 6 0 gl matrix min js document head appendChild script let canvas document createElement canvas document body appendChild canvas canvas width canvas height 512 const adapter await navigator gpu requestAdapter const device await adapter requestDevice const context canvas getContext webgpu const presentationSize canvas width window devicePixelRatio canvas height window devicePixelRatio let presentationFormat context getPreferredFormat adapter console log presentationFormat presentationFormat context configure device device Specify we want both RENDER ATTACHMENT and COPY SRC since we will copy out of the swap chain texture usage GPUTextureUsage RENDER ATTACHMENT GPUTextureUsage COPY SRC format presentationFormat size presentationSize let translateMat mat4 create let rotateXMat mat4 create let rotateYMat mat4 create let rotateZMat mat4 create let scaleMat mat4 create const projectionMatrix mat4 create const viewMatrix mat4 create const lightViewMatrix mat4 create const modelMatrix mat4 create const rotation 0 0 0 mat4 perspective projectionMatrix Math PI 2 canvas width canvas height 0 1 100 0 mat4 lookAt viewMatrix 0 0 dist 0 6 0 0 0 0 1 0 mat4 lookAt lightViewMatrix 0 0 dist 0 6 0 0 0 0 1 0 mat4 lookAt lightViewMatrix 0 30 0 5 1 0 0 0 0 1 0 Declare buffer handles const uniformBuffer device createBuffer size 256 3x mat4x4 3x64 192 usage GPUBufferUsage UNIFORM GPUBufferUsage COPY DST device queue writeBuffer uniformBuffer 0 modelMatrix device queue writeBuffer uniformBuffer 64 viewMatrix device queue writeBuffer uniformBuffer 128 projectionMatrix device queue writeBuffer uniformBuffer 192 lightViewMatrix const sceneUniformBindGroupLayout device createBindGroupLayout entries binding 0 visibility GPUShaderStage VERTEX buffer type uniform const sceneUniformBindGroup device createBindGroup layout sceneUniformBindGroupLayout entries binding 0 resource buffer uniformBuffer const vertWGSL block struct Uniforms modelMatrix mat4x4 f32 modelView mat4x4 f32 modelProjection mat4x4 f32 lightView mat4x4 f32 binding 0 group 0 var uniform uniforms Uniforms struct VSOut builtin position Position vec4 f32 location 0 normal vec3 f32 location 1 pos vec4 f32 stage vertex fn main location 0 normal vec3 f32 location 1 inPos vec3 f32 VSOut var vsOut VSOut var lmvp uniforms modelProjection uniforms lightView uniforms modelMatrix vsOut Position lmvp vec4 f32 inPos 1 0 vsOut pos lmvp vec4 f32 inPos 1 0 let n normalize normal let tiM uniforms modelMatrix let fN tiM vec4 f32 n 0 0 xyz vsOut normal fN return vsOut const fragWGSL struct GfxTextureOutput location 0 tex0 vec4 f32 stage fragment fn main location 0 normal vec3 f32 location 1 pos vec4 f32 GfxTextureOutput var depth pos z pos w depth depth 0 999 1000 0 depth clamp depth 0 0 1 0 depth depth 0 5 0 5 var out GfxTextureOutput out tex0 vec4 f32 depth depth depth 1 0 return out const positions new Float32Array json vertices let normals new Float32Array json normals const indices new Uint16Array json faces if you don t have normals let s use the position data if json normals length 0 normals new Float32Array json vertices const createBuffer arrData usage const buffer device createBuffer size arrData byteLength 3 3 usage usage mappedAtCreation true if arrData instanceof Float32Array new Float32Array buffer getMappedRange set arrData else new Uint16Array buffer getMappedRange set arrData buffer unmap return buffer Declare buffer handles GPUBuffer var positionBuffer createBuffer positions GPUBufferUsage VERTEX var normalBuffer createBuffer normals GPUBufferUsage VERTEX var indexBuffer createBuffer indices GPUBufferUsage INDEX const pipeline device createRenderPipeline layout device createPipelineLayout bindGroupLayouts sceneUniformBindGroupLayout vertex module device createShaderModule code vertWGSL entryPoint main buffers arrayStride 12 attributes shaderLocation 0 format float32x3 offset 0 arrayStride 12 attributes shaderLocation 1 format float32x3 offset 0 fragment module device createShaderModule code fragWGSL entryPoint main targets format presentationFormat gfxTexture0 primitive topology triangle list frontFace cw cullMode back depthStencil format depth24plus format depth32float format depth16unorm depthWriteEnabled true depthCompare less const depthTexture device createTexture size canvas width canvas height 1 size width canvas width height canvas height depth 1 dimension 2d format depth16unorm format depth32float format depth24plus format depth24plus usage 0x4 0x10 0x10 0x04 GPUTextureUsage RENDER ATTACHMENT GPUTextureUsage TEXTURE BINDING var depthTextureView depthTexture createView Graphics buffer texture render targets const gfxTexture0 device createTexture size presentationSize usage 0x10 0x04 GPUTextureUsage RENDER ATTACHMENT GPUTextureUsage TEXTURE BINDING format presentationFormat const gfxTexureView0 gfxTexture0 createView const renderPassDescription set colorattachment views in the frame update colorAttachments view gfxTexureView0 loadValue 0 0 0 0 0 8 1 storeOp store depthStencilAttachment view depthTextureView depthLoadValue 1 depthStoreOp store stencilLoadValue 0 stencilStoreOp store pass 2 let textureSampler device createSampler minFilter linear magFilter linear const sceneUniformBindGroupLayout2 device createBindGroupLayout entries binding 0 visibility GPUShaderStage VERTEX buffer type uniform binding 1 visibility GPUShaderStage FRAGMENT sampler type filtering filtering binding 1 visibility GPUShaderStage FRAGMENT sampler type depth binding 2 visibility GPUShaderStage FRAGMENT texture sampleType float viewDimension 2d binding 3 visibility GPUShaderStage FRAGMENT texture sampleType depth viewDimension 2d const uniformBindGroup2 device createBindGroup layout sceneUniformBindGroupLayout2 entries binding 0 resource buffer uniformBuffer binding 1 resource textureSampler binding 2 resource gfxTexureView0 binding 3 resource depthTextureView var vertWGSL2 block struct Uniforms modelMatrix mat4x4 f32 modelView mat4x4 f32 modelProjection mat4x4 f32 lightView mat4x4 f32 binding 0 group 0 var uniform uniforms Uniforms struct VSOut builtin position Position vec4 f32 location 0 normal vec3 f32 location 1 pos vec3 f32 location 2 lpos vec4 f32 location 3 uvs vec2 f32 stage vertex fn main builtin vertex index VertexIndex u32 location 0 normal vec3 f32 location 1 inPos vec3 f32 VSOut var pos array vec2 f32 4 vec2 f32 1 0 1 0 vec2 f32 1 0 1 0 vec2 f32 1 0 1 0 vec2 f32 1 0 1 0 var vsOut VSOut vsOut Position vec4 f32 pos VertexIndex 0 9 0 0 1 0 vsOut uvs pos VertexIndex 1 0 0 5 return vsOut var fragWGSL2 group 0 binding 1 var mySampler sampler group 0 binding 2 var myTexture0 texture 2d f32 group 0 binding 3 var myTexture1 texture depth 2d stage fragment fn main location 0 normal vec3 f32 location 1 pos vec3 f32 location 2 lpos vec4 f32 location 3 uvs vec2 f32 location 0 vec4 f32 var c textureSample myTexture1 mySampler uvs let c textureSample myTexture0 mySampler uvs y due to the non linear nature of the depth projection the values are biased towards the viewer more detail resolution nearer to the camera so if you want to see the changes in color visually you need to zoom in on part of the view c c 0 99 100 0 return vec4 f32 c c c 1 0 const depthTexture2 device createTexture size canvas width canvas height 1 format depth32float format depth24plus format depth24plus usage GPUTextureUsage RENDER ATTACHMENT GPUTextureUsage TEXTURE BINDING const pipeline2 device createRenderPipeline layout device createPipelineLayout bindGroupLayouts sceneUniformBindGroupLayout2 vertex module device createShaderModule code vertWGSL2 entryPoint main buffers arrayStride 12 attributes shaderLocation 0 format float32x3 offset 0 arrayStride 12 attributes shaderLocation 1 format float32x3 offset 0 fragment module device createShaderModule code fragWGSL2 entryPoint main targets format presentationFormat primitive topology triangle list topology triangle strip frontFace cw stripIndexFormat uint32 cullMode back depthStencil format depth24plus depthWriteEnabled false depthCompare less GPURenderPassDescriptor const renderPassDescription2 colorAttachments view undefined asign later in frame loadValue r 0 0 g 0 5 b 0 5 a 1 0 storeOp store depthStencilAttachment view depthTexture2 createView depthLoadValue 1 depthStoreOp store stencilLoadValue 0 stencilStoreOp store function frame function xformMatrix xform translate rotate scale translate translate 0 0 0 rotate rotate 0 0 0 scale scale 1 1 1 mat4 fromTranslation translateMat translate mat4 fromXRotation rotateXMat rotate 0 mat4 fromYRotation rotateYMat rotate 1 mat4 fromZRotation rotateZMat rotate 2 mat4 fromScaling scaleMat scale mat4 multiply xform translateMat scaleMat mat4 multiply xform rotateXMat xform mat4 multiply xform rotateYMat xform mat4 multiply xform rotateZMat xform rotation 0 0 005 rotation 2 0 001 let translate middle x middle y middle z xformMatrix modelMatrix translate rotation null device queue writeBuffer uniformBuffer 0 modelMatrix renderPassDescription depthStencilAttachment view depthTextureView const commandEncoder device createCommandEncoder const renderPass commandEncoder beginRenderPass renderPassDescription renderPass setPipeline pipeline renderPass setVertexBuffer 0 normalBuffer renderPass setVertexBuffer 1 positionBuffer renderPass setIndexBuffer indexBuffer uint16 renderPass setBindGroup 0 sceneUniformBindGroup renderPass drawIndexed json faces length 1 renderPass endPass device queue submit commandEncoder finish renderPassDescription2 colorAttachments 0 view context getCurrentTexture createView const commandEncoder device createCommandEncoder const passEncoder commandEncoder beginRenderPass renderPassDescription2 passEncoder setPipeline pipeline2 passEncoder setVertexBuffer 0 normalBuffer passEncoder setVertexBuffer 1 positionBuffer passEncoder setIndexBuffer indexBuffer uint16 passEncoder setBindGroup 0 uniformBindGroup2 passEncoder drawIndexed json faces length 1 passEncoder draw 4 1 0 0 passEncoder endPass device queue submit commandEncoder finish requestAnimationFrame frame frame console log ready

tureUsage TEXTURE BINDING var depthTextureView depthTexture createView Graphics buffer texture render targets const gfxTexture0 device createTexture size presentationSize usage 0x10 0x04 GPUTextureUsage RENDER ATTACHMENT GPUTextureUsage TEXTURE BINDING format presentationFormat const gfxTexureView0 gfxTexture0 createView const renderPassDescription set colorattachment views in the frame update colorAttachments view gfxTexureView0 loadValue 0 0 0 0 0 8 1 storeOp store depthStencilAttachment view depthTextureView depthLoadValue 1 depthStoreOp store stencilLoadValue 0 stencilStoreOp store pass 2 let textureSampler device createSampler minFilter linear magFilter linear const sceneUniformBindGroupLayout2 device createBindGroupLayout entries binding 0 visibility GPUShaderStage VERTEX buffer type uniform binding 1 visibility GPUShaderStage FRAGMENT sampler type filtering filtering binding 1 visibility GPUShaderStage FRAGMENT sampler type depth binding 2 visibility GPUShaderStage FRAGMENT texture sampleType float viewDimension 2d binding 3 visibility GPUShaderStage FRAGMENT texture sampleType depth viewDimension 2d const uniformBindGroup2 device createBindGroup layout sceneUniformBindGroupLayout2 entries binding 0 resource buffer uniformBuffer binding 1 resource textureSampler binding 2 resource gfxTexureView0 binding 3 resource depthTextureView var vertWGSL2 block struct Uniforms modelMatrix mat4x4 f32 modelView mat4x4 f32 modelProjection mat4x4 f32 lightView mat4x4 f32 binding 0 group 0 var uniform uniforms Uniforms struct VSOut builtin position Position vec4 f32 location 0 normal vec3 f32 location 1 pos vec3 f32 location 2 lpos vec4 f32 location 3 uvs vec2 f32 stage vertex fn main builtin vertex index VertexIndex u32 location 0 normal vec3 f32 location 1 inPos vec3 f32 VSOut var pos array vec2 f32 4 vec2 f32 1 0 1 0 vec2 f32 1 0 1 0 vec2 f32 1 0 1 0 vec2 f32 1 0 1 0 var vsOut VSOut vsOut Position vec4 f32 pos VertexIndex 0 9 0 0 1 0 vsOut uvs pos VertexIndex 1 0 0 5 return vsOut var fragWGSL2 group 0 binding 1 var mySampler sampler group 0 binding 2 var myTexture0 texture 2d f32 group 0 binding 3 var myTexture1 texture depth 2d stage fragment fn main location 0 normal vec3 f32 location 1 pos vec3 f32 location 2 lpos vec4 f32 location 3 uvs vec2 f32 location 0 vec4 f32 var c textureSample myTexture1 mySampler uvs let c textureSample myTexture0 mySampler uvs y due to the non linear nature of the depth projection the values are biased towards the viewer more detail resolution nearer to the camera so if you want to see the changes in color visually you need to zoom in on part of the view c c 0 99 100 0 return vec4 f32 c c c 1 0 const depthTexture2 device createTexture size canvas width canvas height 1 format depth32float format depth24plus format depth24plus usage GPUTextureUsage RENDER ATTACHMENT GPUTextureUsage TEXTURE BINDING const pipeline2 device createRenderPipeline layout device createPipelineLayout bindGroupLayouts sceneUniformBindGroupLayout2 vertex module device createShaderModule code vertWGSL2 entryPoint main buffers arrayStride 12 attributes shaderLocation 0 format float32x3 offset 0 arrayStride 12 attributes shaderLocation 1 format float32x3 offset 0 fragment module device createShaderModule code fragWGSL2 entryPoint main targets format presentationFormat primitive topology triangle list topology triangle strip frontFace cw stripIndexFormat uint32 cullMode back depthStencil format depth24plus depthWriteEnabled false depthCompare less GPURenderPassDescriptor const renderPassDescription2 colorAttachments view undefined asign later in frame loadValue r 0 0 g 0 5 b 0 5 a 1 0 storeOp store depthStencilAttachment view depthTexture2 createView depthLoadValue 1 depthStoreOp store stencilLoadValue 0 stencilStoreOp store function frame function xformMatrix xform translate rotate scale translate translate 0 0 0 rotate rotate 0 0 0 scale scale 1 1 1 mat4 fromTranslation translateMat translate mat4 fromXRotation rotateXMat rotate 0 mat4 fromYRotation rotateYMat rotate 1 mat4 fromZRotation rotateZMat rotate 2 mat4 fromScaling scaleMat scale mat4 multiply xform translateMat scaleMat mat4 multiply xform rotateXMat xform mat4 multiply xform rotateYMat xform mat4 multiply xform rotateZMat xform rotation 0 0 005 rotation 2 0 001 let translate middle x middle y middle z xformMatrix modelMatrix translate rotation null device queue writeBuffer uniformBuffer 0 modelMatrix renderPassDescription depthStencilAttachment view depthTextureView const commandEncoder device createCommandEncoder const renderPass commandEncoder beginRenderPass renderPassDescription renderPass setPipeline pipeline renderPass setVertexBuffer 0 normalBuffer renderPass setVertexBuffer 1 positionBuffer renderPass setIndexBuffer indexBuffer uint16 renderPass setBindGroup 0 sceneUniformBindGroup renderPass drawIndexed json faces length 1 renderPass endPass device queue submit commandEncoder finish renderPassDescription2 colorAttachments 0 view context getCurrentTexture createView const commandEncoder device createCommandEncoder const passEncoder commandEncoder beginRenderPass renderPassDescription2 passEncoder setPipeline pipeline2 passEncoder setVertexBuffer 0 normalBuffer passEncoder setVertexBuffer 1 positionBuffer passEncoder setIndexBuffer indexBuffer uint16 passEncoder setBindGroup 0 uniformBindGroup2 passEncoder drawIndexed json faces length 1 passEncoder draw 4 1 0 0 passEncoder endPass device queue submit commandEncoder finish requestAnimationFrame frame frame console log ready

3dplot
a4print
about
acejs
acejs2
acejs3
aessecurity
angularjs
animbackgroundimage
aseformat
assert
asteroidsjs
backgrounds01
backgrounds02
backgrounds03
barnsleyfern
base26
base64
bib
binary
bodypix
bouncy
box2dweb
breakoutjs
browserversion
buslanes
busybutton
bvhreader
calendar
canvas
canvas2
canvas3
canvasmandelbrot
canvasmandelbrot2
canvasnumbers
canvaszoom
capsule
changingimages
chatgptusingopenai
chatgptusingopenai2
chatgptusingopenai3
checkboxtoggle
chinesetiles
classes
classfeatures
clipboardbutton
clonenode
codedropdown
codemirror
codemirror2
collada
colorpick
columnresizer
contextmenu
convnet
cookiebanner
countdown
countdown2
countdown3
crop
css3dbarchart
css3dbarchart2
css3dbook
css3dscene
csscube
csscube2
csscube3
csscubevideos
cssfilelist
csshas
csspulse
cssresizeaspect
cssspin
csszooming
csvtoarray
customcheckbox
d3datamap
d3js
d3js10
d3js11
d3js2
d3js3
d3js4
d3js5
d3js6
d3js7
d3js8
d3js9
d3jsanimatedgrid
d3jsarctransition
d3jsarctransition2
d3jsaxis
d3jsaxischanging
d3jsbars
d3jsbrushing
d3jsbuslanes
d3jsbuslanes2
d3jscalendar
d3jscheat
d3jsclock
d3jscloudmap
d3jscogs
d3jscolors
d3jscovid
d3jscovid2
d3jscovid3
d3jsdashboard
d3jsdashboard2
d3jsdashboard3
d3jsdatakeyfunction
d3jsdensity
d3jsdragresizing
d3jsdragresizing2
d3jseach
d3jsease
d3jsevents
d3jsflower
d3jsforcegroups
d3jsforces
d3jsforces2
d3jsfractaltree
d3jsgeo
d3jsgroupbars
d3jsgroups
d3jsheatmap
d3jshex
d3jshierarchies
d3jshierarchies2
d3jshistogram
d3jshistogram2
d3jshistogram3
d3jshistogram4
d3jsinterpolate
d3jsjoin
d3jskmean
d3jskmean2
d3jsline
d3jsline2
d3jsline3
d3jsline4
d3jslinetransition
d3jslinetransition0
d3jslinetransition2
d3jsmaplocations
d3jsmaps
d3jsmaps2
d3jsmaps3
d3jsmisc
d3jsmisc2
d3jsmodule
d3jsmodulecolor
d3jsmultistyles
d3jsnobel
d3jsoverlappinggraphs
d3jspanel
d3jspie
d3jspieinterpolate
d3jssankey
d3jssankey2
d3jsscatter
d3jsshapes
d3jsslider
d3jsspending
d3jsspending2
d3jsspiralplot
d3jsspirograph
d3jssquare
d3jsstack
d3jsstackedbar
d3jsstackedbar2
d3jssunburst
d3jssunmoon
d3jssvglines
d3jssymbols
d3jstimelines
d3jsuk
d3jsvoronoi
d3scatterplot
d3timeline
d3timeline2
datalist
datamuse
date
dblclickhighlight
deviceorientation
dictionaryapi
dockermenu
doodlepad
downloadgif
dragdroplistitems
dragrotateresizediv
dragrotateresizediv2
dragrotateresizediv3
dragrotateresizediv4
dragrotateresizefontsize
dragselectbrush
drawlinesdiv
dropdown
dualquaternionimages
dynamicgrid
easefunctions
easeinterpolate3dplots
echart
echart2
echart3
encapsulation
epubviewer
errorstack
excalidraw
excalidraw2
excalidraw3
excalidraw5
expandable
faker
fetchplus
fileupload
fixedtopbar
fonts
fonts2
footerbar
fractalmaze
fractalmaze2
fractalnoiseimage
fractals
fractals2
fractaltree
freesvg
fresnel
froggerjs
gantt
gifgiphyapi
gifhex
gltffromscratch
gradients
griditems
griditems2
griditems3
griditems4
gridworms
heat
hexview
hexview2
highlight
icons
icons2
iframes
ik
imagetracertosvg
imgur
inputfile
invadersjs
ipynb
ipynb2
ipynb3
ipynb4
isbn13
isbn2
jpghex
jquery
jquery2
jqueryui
jqueryui2
jsdraganddrop
jslint
jsobfuscate
jsraytracer
jstree
jstree2
jszip
jszipimages
jszipread
keyframes
l2dwidget
lda
leftmenu
less
less2
lineargradientimage
linenumbers
loadimagefromfile
makepdf
maps
markdown
markdown2
markdownalerts
markdownalerts2
markdownbookmarks
markovimage
markovpixelblocks
mathjax
matrices
matsandvects
mazegamejs
md2tex
metrotiles
metrowindows
milestones
misc
misc2
modules
myipdetails
neataptic
networkstructures
networkstructures2
number
obj
objtojson
openaiimages
opencv
opencv2
opencv3
opencv4
opencv5
outline
p2
p5fractalleaf
p5fractalshape
p5js
p5js2
p5js3
p5jsanimatedcover
p5mengercube
p5snowflakes
palindrome
panel
parallax
paste
paste2
pasteimgfromurl
pdfjs
pdfjs2
pdfkit
pdfkit2
pdfkit3
pdfkit4
pdfkit5
pdfkit6
pdfmake
pdfmake2
pdfmake3
pdfmake4
pdfmake5
pdfmake6
perlin
perlin2
perlin3
perspective
pexels
playground
plotly
plotlynoise
plotlyranddist
plyloader
plyloader2
pngtxtencoder
pongjs
pptxgenjs
prettycode
prism
prn
problems
progress
pseudorandom
px2svg
python
quotes
racergame
random
randomprofilepatterns
randomstring
rating
rayambient
raymonte
raymonteprogressive
raymonteprogressive2
raymontewarmstart
reexpcross
reexpcross2
regex
regexbib
regexpfixbib
regexpmultiline
repeatwordsregexp
resizabletable
resizabletable2
revealjs
revealjs2
revealjsmulti
ritalanguage
ritalanguage2
ritalanguage3
rotateimg
rough
rsapublicprivatekeys
rss
rss2
sankey
scrappingsvg
scrolltext
scrolltext2
scrollwidth
sdfboxinboxtwist
sdfhollowbox
setintervalexception
shareurl
shuffle
sidecomment
similarity
simplehighlighter
simpleplatformgamejs
sinecanvas
sliderpopout
slides
smileys
snowfall
snowman
sound
soundsignal
sphererayintersection
springs
sqljs
steganography
stereogram
stringmatching
svg
svgchaos
svgdragresize
svgdragresize2
svgdragresize3
svgdragrotate
svgdrawing
svglines
svglines2
svglines3
svglines4
svglines5
svglinesmandelbrot
svgpathsdragrotate
svgpathsdragrotateresize
svgpie
svgpie2
svgpie3
svgpiepath
svgpiepath2
svgrandomfaces
symbols
synaptic
synaptic2
synonyms
tablerotatecells
tablerotatecells2
tablerotatecells3
tablerotatecells3b
tablerotatecells4
tables
tablezebra
tabularjs
tabularjs2
tabulatordownload
tagcanvas
tensorflowgan
tensorflowjs
tensorflowjsbasic
tensorflowjscnn
tensorflowjssinewave
tensorflowjssound
tensorflowmobilenet
tetrahedronfractal
tetrahedronfractalfolding
tetris
textarea
textareaauto
textareadiv
textareadiv2
textmaskimage
theirorthere
thesaurus
threejs
threejs2
threejs3
threejs4
threejsgltf
threejstokyo
tiles
toaster
tooltip
transition
transitionexpandabledropdown
treeview
treeview2
tricks
tshirt
tshirt2
tshirt3
turningpages
unsplash
urlblob
urlblob2
userdefinepoints
vector
videos
videos2
visualsort
vue
w2ui
w2uientertextdialog
webcam
webgl
webgl2
webgl3
webgl4
webgl5
webglbasic1
webglbasic2
webglcube
webglfov
webglfrustum
webgljson
webglleaves
webgllighting
webglorthographic
webglpoints1
webglpoints2
webglpoints3
webglsquare
webgltexture1
webgltexture2
webgltexture3
webgltransforms
webgltriangle
webgpu
webgpu10
webgpu11
webgpu12
webgpu13
webgpu14
webgpu15
webgpu16
webgpu17
webgpu2
webgpu3
webgpu4
webgpu5
webgpu6
webgpu7
webgpu8
webgpu9
webgpubars
webgpubuffers
webgpubuffers2
webgpucellnoise
webgpuclouds
webgpuclydescope
webgpucompute
webgpucubemap
webgpucubemap2
webgpudeferred
webgpudepth
webgpudof
webgpudrops
webgpuetha
webgpufire
webgpufractalcubes
webgpuglassrain
webgpugltf
webgpugltf2
webgpugrass
webgpugrid
webgpukernel
webgpukleinian
webgpulabupdates
webgpulighting
webgpumandelbrot
webgpumeta3d
webgpumetaballs
webgpumouse
webgpunoise
webgpunormalmapping
webgpuobj
webgpuparallax
webgpuparallax2
webgpuparallax3
webgpuparallaxshadow
webgpuparallaxshadow2
webgpupixel
webgpuquad
webgpuray1
webgpuraytracing
webgpuraytracing2
webgpushadowmaps
webgpushadowmaps2
webgpusierpinski2d
webgpusierpinski3d
webgpusinusoid
webgpussao
webgpustadiumobj
webgpuswirl
webgputestpipe3
webgputoon
webgputopology
webgputt
webgpuvolcloud
webgpuwater
webgpuwireframe
webgpuwireframe2
webpcanvas
webworkers
webxr
webxr2
wiggly
wikipedia