radeon: oops didn't need this logbase2 fn

This commit is contained in:
Dave Airlie 2011-01-19 16:17:03 +10:00
parent c6fb88fc5a
commit 4832403c38

View file

@ -639,21 +639,6 @@ void radeonSetTexOffset(__DRIcontext * pDRICtx, GLint texname,
}
}
static int
logbase2(int n)
{
GLint i = 1;
GLint log2 = 0;
while (n > i) {
i *= 2;
log2++;
}
return log2;
}
void radeonSetTexBuffer2(__DRIcontext *pDRICtx, GLint target, GLint texture_format,
__DRIdrawable *dPriv)
{