X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=palette.h;h=f9044653f3a149838909250c4c38701dceff25ad;hb=6d472eb4b897879d92a89416a5785a3fc78da3e7;hp=e7603bb97a1ed2236d1039015ff0fc10a6582e8f;hpb=fd091d66e2673b19eb9c7d73d95160ef874de5e6;p=xonotic%2Fdarkplaces.git diff --git a/palette.h b/palette.h index e7603bb9..f9044653 100644 --- a/palette.h +++ b/palette.h @@ -2,6 +2,14 @@ #ifndef PALLETE_H #define PALLETE_H +#define PALETTEFEATURE_STANDARD 1 +#define PALETTEFEATURE_REVERSED 2 +#define PALETTEFEATURE_PANTS 4 +#define PALETTEFEATURE_SHIRT 8 +#define PALETTEFEATURE_GLOW 16 +#define PALETTEFEATURE_ZERO 32 +#define PALETTEFEATURE_TRANSPARENT 128 + extern unsigned char palette_rgb[256][3]; extern unsigned char palette_rgb_pantscolormap[16][3]; extern unsigned char palette_rgb_shirtcolormap[16][3]; @@ -18,10 +26,12 @@ extern unsigned int palette_bgra_onlyfullbrights[256]; extern unsigned int palette_bgra_pantsaswhite[256]; extern unsigned int palette_bgra_shirtaswhite[256]; extern unsigned int palette_bgra_transparent[256]; +extern unsigned int palette_bgra_embeddedpic[256]; +extern unsigned char palette_featureflags[256]; // used by hardware gamma functions in vid_* files -void BuildGammaTable8(float prescale, float gamma, float scale, float base, unsigned char *out, int rampsize); -void BuildGammaTable16(float prescale, float gamma, float scale, float base, unsigned short *out, int rampsize); +void BuildGammaTable8(float prescale, float gamma, float scale, float base, float contrastboost, unsigned char *out, int rampsize); +void BuildGammaTable16(float prescale, float gamma, float scale, float base, float contrastboost, unsigned short *out, int rampsize); void Palette_Init(void);