| 43 | } |
| 44 | |
| 45 | [[gnu::pure]] |
| 46 | static unsigned GetWidth(JNIEnv *env, jobject bitmap) { |
| 47 | assert(env != nullptr); |
| 48 | assert(bitmap != nullptr); |
| 49 | |
| 50 | return env->CallIntMethod(bitmap, getWidth_method); |
| 51 | } |
| 52 | |
| 53 | [[gnu::pure]] |
| 54 | static unsigned GetHeight(JNIEnv *env, jobject bitmap) { |
no outgoing calls
no test coverage detected