예제 #1
0
파일: color.c 프로젝트: tinyserver/siege
SGColor SG_EXPORT sgColor4ubv(const SGubyte* rgba)
{
    return sgColor4ub(rgba[0], rgba[1], rgba[2], rgba[3]);
}
예제 #2
0
파일: color.c 프로젝트: tinyserver/siege
SGColor SG_EXPORT sgColor2ub(SGubyte g, SGubyte a)
{
    return sgColor4ub(g, g, g, a);
}
예제 #3
0
파일: color.c 프로젝트: tinyserver/siege
SGColor SG_EXPORT sgColor1ub(SGubyte g)
{
    return sgColor4ub(g, g, g, 255);
}
예제 #4
0
파일: color.c 프로젝트: tinyserver/siege
SGColor SG_EXPORT sgColor3ub(SGubyte r, SGubyte g, SGubyte b)
{
    return sgColor4ub(r, g, b, 255);
}
예제 #5
0
파일: color.c 프로젝트: SIEGE/siege
SGColor SG_CALL sgColor4ubp(const SGubyte* rgba)
{
    return sgColor4ub(rgba[0], rgba[1], rgba[2], rgba[3]);
}
예제 #6
0
파일: color.c 프로젝트: SIEGE/siege
SGColor SG_CALL sgColor1ub(SGubyte g)
{
    return sgColor4ub(g, g, g, 255);
}
예제 #7
0
파일: color.c 프로젝트: SIEGE/siege
SGColor SG_CALL sgColor2ub(SGubyte g, SGubyte a)
{
    return sgColor4ub(g, g, g, a);
}
예제 #8
0
파일: color.c 프로젝트: SIEGE/siege
SGColor SG_CALL sgColor3ub(SGubyte r, SGubyte g, SGubyte b)
{
    return sgColor4ub(r, g, b, 255);
}