typedef struct _NWS_RGBA { Uint8 r; Uint8 g; Uint8 b; Uint8 a; } NWS_RGBA;
r 赤(0〜255) g 緑(0〜255) b 青(0〜255) a 透明度(0〜255)
主にウィンドウのカラーを定義する構造体です。 透明度を現すメンバ a は、0で完全透明、255で不透明です。
nwGetWindowColor()
ウィンドウカラーの取得 nwSetWindowColor()
ウィンドウ色の指定