no more of that thanks

SVN revision: 2384
This commit is contained in:
Carsten Haitzler 2000-03-30 03:28:56 +00:00
parent a78ec3ab90
commit 9caa5471b7
1 changed files with 0 additions and 6 deletions

View File

@ -5,12 +5,6 @@
#include "blend.h"
#include "scale.h"
/*
#define R_VAL(x) (((x) & 0x000000ff))
#define G_VAL(x) (((x) & 0x0000ff00) >> 8)
#define B_VAL(x) (((x) & 0x00ff0000) >> 16)
#define A_VAL(x) (((x) & 0xff000000) >> 24)
*/
#define RGBA_COMPOSE(r, g, b, a) ((a) << 24) | ((r) << 16) | ((g) << 8) | (b)
#define INV_XAP (255 - xapoints[x])
#define XAP (xapoints[x])