plasma-arc / wgpu-shader.js
p3nGu1nZz's picture
rename filenames
46ec188
raw
history blame
139 Bytes
// wgpu-shaders.js
export async function fetchShaderCode(url) {
const response = await fetch(url);
return await response.text();
}