| 50 | } |
| 51 | |
| 52 | jint MakeColorInt(JNIEnv*, uint32_t red, uint32_t green, uint32_t blue) { |
| 53 | uint32_t color = (255 << 24) | (red << 16) | (green << 8) | (blue << 0); |
| 54 | return static_cast<int>(color); |
| 55 | } |
| 56 | |
| 57 | jobject MakePAGFontObject(JNIEnv* env, const std::string& familyName, |
| 58 | const std::string& familyStyle) { |
no outgoing calls
no test coverage detected