Home
last modified time | relevance | path

Searched refs:ColorPal (Results 1 – 2 of 2) sorted by relevance

/dports/games/gemrb/gemrb-0.9.0/gemrb/core/
H A DInterface.h327 using ColorPal = std::array<Color, SIZE>; variable
396 std::vector<ColorPal<256>> palettes256;
397 std::vector<ColorPal<32>> palettes32;
398 std::vector<ColorPal<16>> palettes16;
473 …const ColorPal<16>& GetPalette16(uint8_t idx) const { return (idx >= palettes16.size()) ? palettes… in GetPalette16()
474 …const ColorPal<32>& GetPalette32(uint8_t idx) const { return (idx >= palettes32.size()) ? palettes… in GetPalette32()
475 …const ColorPal<256>& GetPalette256(uint8_t idx) const { return (idx >= palettes256.size()) ? palet… in GetPalette256()
728 bool LoadPalette(ResRef resref, std::vector<ColorPal<SIZE>>& palettes) in LoadPalette()
/dports/games/gemrb/gemrb-0.9.0/gemrb/plugins/PLTImporter/
H A DPLTImporter.cpp81 ColorPal<256> Palettes[8]; in GetSprite2D()