File size: 139 Bytes
46ec188
 
 
 
 
 
1
2
3
4
5
6
// wgpu-shaders.js

export async function fetchShaderCode(url) {
    const response = await fetch(url);
    return await response.text();
}