App:Library:FabGL:Enumerations:PixelFormat

提供: robot-jp wiki
2022年3月21日 (月) 23:38時点におけるTakashi (トーク | 投稿記録)による版 (→‎enum PixelFormat)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
ナビゲーションに移動検索に移動

enum PixelFormat

この列挙型は、ピクセル形式を定義します。

Enumerator
Undefined Undefined pixel format
Native Native device pixel format
Mask 1 bit per pixel. 0 = transparent, 1 = opaque (color must be specified apart)
RGBA2222 8 bit per pixel: AABBGGRR (bit 7=A 6=A 5=B 4=B 3=G 2=G 1=R 0=R). AA = 0 fully transparent, AA = 3 fully opaque. Each color channel can have values from 0 to 3 (maxmum intensity).
RGBA8888 32 bits per pixel: RGBA (R=byte 0, G=byte1, B=byte2, A=byte3). Minimum value for each channel is 0, maximum is 255.

line 444 of file displaycontroller.hに定義されています。



戻る