Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
p3nGu1nZz
/
plasma-arc
like
6
Running
App
Files
Files
Community
66cabb9
plasma-arc
/
wgpu-shader.js
p3nGu1nZz
rename filenames
46ec188
12 days ago
raw
Copy download link
history
blame
Safe
139 Bytes
// wgpu-shaders.js
export
async
function
fetchShaderCode
(
url
) {
const
response =
await
fetch
(url);
return
await
response.
text
();
}