Skip to content

Commit

Permalink
* examples/view.c:
Browse files Browse the repository at this point in the history
    + Removed last endianness issue.
  • Loading branch information
samhocevar committed Nov 30, 2003
1 parent 5fafff6 commit cdc6c08
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions examples/view.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@
#include <malloc.h>
#include <unistd.h>

#ifdef HAVE_ENDIAN_H
# include <endian.h>
#endif

#include <Imlib2.h>

#include "caca.h"
Expand All @@ -40,7 +36,7 @@ Imlib_Image image = NULL;
char *pixels = NULL;
struct caca_bitmap *bitmap = NULL;
int x, y, w, h;
unsigned int rmask, gmask, bmask;
const unsigned int rmask = 0x00ff0000, gmask = 0x0000ff00, bmask = 0x000000ff;

int dithering = CACA_DITHERING_ORDERED4;

Expand All @@ -54,20 +50,6 @@ int main(int argc, char **argv)
char **list = NULL;
int current = 0, items = 0, opts = 1;

#ifdef HAVE_ENDIAN_H
if(__BYTE_ORDER == __BIG_ENDIAN)
#else
rmask = 0x12345678;
if(*(char *)&rmask == 0x12)
#endif
{
rmask = 0x0000ff00; gmask = 0x00ff0000; bmask = 0xff000000;
}
else
{
rmask = 0x00ff0000; gmask = 0x0000ff00; bmask = 0x000000ff;
}

/* Initialise libcaca */
if(caca_init())
{
Expand Down

0 comments on commit cdc6c08

Please sign in to comment.