Home
last modified time | relevance | path

Searched defs:TS_RGB (Results 1 – 3 of 3) sorted by relevance

/dports/games/libretro-scummvm/scummvm-7b1e929/graphics/
H A Dtransparent_surface.h39 #define TS_RGB(R,G,B) ((0xff << 24) | ((R) << 16) | ((G) << 8) | (B)) macro
42 #define TS_RGB(R,G,B) (((R) << 24) | ((G) << 16) | (B << 8) | 0xff) macro
/dports/games/residualvm/residualvm-0.3.1/graphics/
H A Dtransparent_surface.h39 #define TS_RGB(R,G,B) ((0xff << 24) | ((R) << 16) | ((G) << 8) | (B)) macro
42 #define TS_RGB(R,G,B) (((R) << 24) | ((G) << 16) | (B << 8) | 0xff) macro
/dports/games/scummvm/scummvm-2.5.1/graphics/
H A Dtransparent_surface.h38 #define TS_RGB(R,G,B) (uint32)(((R) << 24) | ((G) << 16) | ((B) << 8) | 0xff) macro