Ignore:
Timestamp:
Mar 1, 2000, 11:45:30 PM (26 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/mesa/3dfx/image.c

    r2938 r2965  
    1 /* $Id: image.c,v 1.1 2000-02-29 00:46:18 sandervl Exp $ */
     1/* $Id: image.c,v 1.2 2000-03-01 22:45:23 jeroen Exp $ */
    22
    33/*
     
    3737#include "GL/xf86glx.h"
    3838#endif
     39#include "types.h"
    3940#include "context.h"
    4041#include "image.h"
     
    4243#include "mmath.h"
    4344#include "pixel.h"
    44 #include "types.h"
    4545#endif
    4646
     
    5757      b = (GLuint) p[i];
    5858      a = ((b & 0x01) << 7) |
    59           ((b & 0x02) << 5) |
    60           ((b & 0x04) << 3) |
    61           ((b & 0x08) << 1) |
    62           ((b & 0x10) >> 1) |
    63           ((b & 0x20) >> 3) |
    64           ((b & 0x40) >> 5) |
    65           ((b & 0x80) >> 7);
     59          ((b & 0x02) << 5) |
     60          ((b & 0x04) << 3) |
     61          ((b & 0x08) << 1) |
     62          ((b & 0x10) >> 1) |
     63          ((b & 0x20) >> 3) |
     64          ((b & 0x40) >> 5) |
     65          ((b & 0x80) >> 7);
    6666      p[i] = (GLubyte) a;
    6767   }
Note: See TracChangeset for help on using the changeset viewer.