mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
bef8c9ae76
This needs to be moved into the backend, and partially into the shader. So far this only removes the code from the main rendering logic, the final implementation is not done yet. It had to go because it required the main rendering code to look deep into the texture data which would be a major blocker for refactoring.
49 lines
1 KiB
C
49 lines
1 KiB
C
#ifndef HIGHTILE_PRIV_H
|
|
#define HIGHTILE_PRIV_H
|
|
|
|
typedef struct {
|
|
polytintflags_t f;
|
|
uint8_t r, g, b;
|
|
uint8_t sr, sg, sb;
|
|
} polytint_t;
|
|
|
|
extern polytint_t hictinting[MAXPALOOKUPS];
|
|
|
|
static inline void globaltinting_apply(float *color)
|
|
{
|
|
color[0] *= (float)globalr * (1.f/255.f);
|
|
color[1] *= (float)globalg * (1.f/255.f);
|
|
color[2] *= (float)globalb * (1.f/255.f);
|
|
}
|
|
|
|
|
|
// replacement flags
|
|
enum
|
|
{
|
|
HICR_FORCEFILTER = 2,
|
|
};
|
|
|
|
// hictinting[].f / gloadtile_hi() and mdloadskin() <effect> arg bits
|
|
enum
|
|
{
|
|
HICTINT_GRAYSCALE = 1,
|
|
HICTINT_INVERT = 2,
|
|
HICTINT_COLORIZE = 4,
|
|
HICTINT_USEONART = 8,
|
|
HICTINT_APPLYOVERPALSWAP = 16,
|
|
HICTINT_APPLYOVERALTPAL = 32,
|
|
|
|
HICTINT_BLEND_MULTIPLY = 0<<6,
|
|
HICTINT_BLEND_SCREEN = 1<<6,
|
|
HICTINT_BLEND_OVERLAY = 2<<6,
|
|
HICTINT_BLEND_HARDLIGHT = 3<<6,
|
|
|
|
HICTINT_BLENDMASK = 64|128,
|
|
|
|
HICTINT_PRECOMPUTED = HICTINT_COLORIZE | HICTINT_BLENDMASK,
|
|
HICTINT_IN_MEMORY = HICTINT_PRECOMPUTED | HICTINT_GRAYSCALE | HICTINT_INVERT,
|
|
|
|
HICTINT_MEMORY_COMBINATIONS = 1<<5,
|
|
};
|
|
|
|
#endif
|