1
0

Implement RGBREAD

This commit is contained in:
otya128
2016-12-27 15:15:49 +09:00
parent caa2895e37
commit ab86a9fb4e
2 changed files with 10 additions and 1 deletions

View File

@@ -1698,7 +1698,7 @@ class PetitComputer
throw new Exception("unsuport enviroment");
}
//プチコンと違って[A,]R,G,Bじゃない
static pure nothrow void RGBRead(uint color, out ubyte r, out ubyte g, out ubyte b, out ubyte a)
static pure nothrow void RGBRead(T)(uint color, out T r, out T g, out T b, out T a)
{
//エンディアン関係ない
a = color >> 24;