// fetch next control point
next = out[((y + ystep) * outwidth + x) * components + c];
// flatten central control point
- out[(y * outwidth + x) * components + c] = (curr + (prev + next) * 0.5f) * 0.5f;;
+ out[(y * outwidth + x) * components + c] = (curr + (prev + next) * 0.5f) * 0.5f;
// create following midpoint
out[((y + halfstep) * outwidth + x) * components + c] = (curr + next) * 0.5f;
}
// fetch next control point
next = out[(y * outwidth + (x + xstep)) * components + c];
// flatten central control point
- out[(y * outwidth + x) * components + c] = (curr + (prev + next) * 0.5f) * 0.5f;;
+ out[(y * outwidth + x) * components + c] = (curr + (prev + next) * 0.5f) * 0.5f;
}
}
}
// fetch next control point
next = out[((y + ystep) * outwidth + x) * components + c];
// flatten central control point
- out[(y * outwidth + x) * components + c] = (curr + (prev + next) * 0.5f) * 0.5f;;
+ out[(y * outwidth + x) * components + c] = (curr + (prev + next) * 0.5f) * 0.5f;
}
}
}
leaf = Mod_Q1BSP_PointInLeaf(model, p);
if (leaf)
{
- i = min(outsize, (int)sizeof(leaf->ambient_sound_level));;
+ i = min(outsize, (int)sizeof(leaf->ambient_sound_level));
if (i)
{
memcpy(out, leaf->ambient_sound_level, i);
{
if (snd_firsttime || snd_isdirect)
{
- stat = SNDDMA_InitDirect ();;
+ stat = SNDDMA_InitDirect ();
if (stat == SIS_SUCCESS)
{