glu/sgi: Remove dead initialization in extract565.

This commit is contained in:
Vinson Lee
2010-07-15 01:42:02 -07:00
parent a6392e9915
commit 236bebb0c3

View File

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