remove unused array

This commit is contained in:
ktyl 2023-03-01 00:55:31 +00:00
parent 16c3e46930
commit ce6376df81
1 changed files with 0 additions and 11 deletions

View File

@ -2,17 +2,6 @@
void makeSpheres(struct Sphere *spheres, int count, float t)
{
vec3 albedos[] =
{
{0.0,0.0,1.0},
{0.0,1.0,0.0},
{0.0,1.0,1.0},
{1.0,0.0,0.0},
{1.0,0.0,1.0},
{1.0,1.0,0.0},
{1.0,1.0,1.0}
};
vec3 sc = {0.0,0.0,1.0};
int sphereIdx = 0;