Browse Source

* bitmap.h

master
Alex 'AdUser' Z 9 years ago
parent
commit
9e0f718caa
  1. 5
      src/bitmap.h

5
src/bitmap.h

@ -1,8 +1,9 @@
#ifndef HAS_BITMAP_H
#define HAS_BITMAP_H 1
#define BITMAP_SIZE 32
#define BITMAP_BITS 8 * BITMAP_SIZE
#define BITMAP_SIDE 16
#define BITMAP_SIZE (BITMAP_SIDE * (BITMAP_SIDE / 8))
#define BITMAP_BITS (BITMAP_SIZE * 8)
typedef unsigned char bitmap_t[BITMAP_SIZE];

Loading…
Cancel
Save