ab2822f 2c0108d f357aae
1
2
3
4
5
6
// utility.js export async function fetchShaderCode(url) { const response = await fetch(url); return await response.text(); }