glu/sgi: Remove dead initialization in extract565rev.

This commit is contained in:
Vinson Lee
2010-07-16 01:11:03 -07:00
parent 236bebb0c3
commit 3b56683b99

View File

@@ -5593,7 +5593,7 @@ static void shove565(const GLfloat shoveComponents[],
static void extract565rev(int isSwap,
const void *packedPixel, GLfloat extractComponents[])
{
GLushort ushort= *(const GLushort *)packedPixel;
GLushort ushort;
if (isSwap) {
ushort= __GLU_SWAP_2_BYTES(packedPixel);