First, escuse me for my english
How i can find the r g b a values when i build a color like this:
// sdl_video… and SDL_SetAlpha already initialised
SrcColor : cardinal;
SrcColor:= SDL_MapRGBA(gL2KMAINScreen.screen.format, 255, 150, 0, 200);
…
I try:
alpha := (SrcColor and $000000ff);
But it don’t work! (bis)
Someone can help me?
thks.