MCPcopy Create free account
hub / github.com/ClassiCube/ClassiCube / ToAndroidColor

Function ToAndroidColor

src/LBackend_Android.c:148–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

146}
147
148static int ToAndroidColor(BitmapCol color) {
149 int R = BitmapCol_R(color);
150 int G = BitmapCol_G(color);
151 int B = BitmapCol_B(color);
152 int A = BitmapCol_A(color);
153 return (A << 24) | (R << 16) | (G << 8) | B;
154}
155
156
157static jstring JNICALL java_nextTextPart(JNIEnv* env, jobject o, jstring total, jintArray state) {

Callers 5

java_nextTextPartFunction · 0.85
LBackend_LineShowFunction · 0.85
LBackend_SliderShowFunction · 0.85
LBackend_TableShowFunction · 0.85
java_tableGetColorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected