| 51 | } |
| 52 | |
| 53 | [[gnu::pure]] |
| 54 | static unsigned GetHeight(JNIEnv *env, jobject bitmap) { |
| 55 | assert(env != nullptr); |
| 56 | assert(bitmap != nullptr); |
| 57 | |
| 58 | return env->CallIntMethod(bitmap, getHeight_method); |
| 59 | } |
| 60 | }; |
no outgoing calls
no test coverage detected