mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
13 lines
550 B
C
13 lines
550 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "palentry.h"
|
||
|
|
||
|
int BestColor(const uint32_t* pal, int r, int g, int b, int first = 1, int num = 255);
|
||
|
int PTM_BestColor(const uint32_t* pal_in, int r, int g, int b, bool reverselookup, float powtable, int first = 1, int num = 255);
|
||
|
void DoBlending(const PalEntry* from, PalEntry* to, int count, int r, int g, int b, int a);
|
||
|
// Colorspace conversion RGB <-> HSV
|
||
|
void RGBtoHSV (float r, float g, float b, float *h, float *s, float *v);
|
||
|
void HSVtoRGB (float *r, float *g, float *b, float h, float s, float v);
|
||
|
|