| 146 | } |
| 147 | |
| 148 | static 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 | |
| 157 | static jstring JNICALL java_nextTextPart(JNIEnv* env, jobject o, jstring total, jintArray state) { |
no outgoing calls
no test coverage detected