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