service_class.fill_polygon,
drawable_object,
gcontext, array);
+ android_exception_check_1 (array);
ANDROID_DELETE_LOCAL_REF (array);
}
drawable, gcontext,
(jint) x, (jint) y,
(jint) width, (jint) height);
+
+ /* In lieu of android_exception_check, clear all exceptions after
+ calling this frequently called graphics operation. */
+ (*android_java_env)->ExceptionClear (android_java_env);
}
void
service_class.draw_point,
drawable, gcontext,
(jint) x, (jint) y);
+
+ /* In lieu of android_exception_check, clear all exceptions after
+ calling this frequently called graphics operation. */
+ (*android_java_env)->ExceptionClear (android_java_env);
}
void
drawable, gcontext,
(jint) x, (jint) y,
(jint) x2, (jint) y2);
+
+ /* In lieu of android_exception_check, clear all exceptions after
+ calling this frequently called graphics operation. */
+ (*android_java_env)->ExceptionClear (android_java_env);
}
android_pixmap
The caller must take care to unlock the bitmap data afterwards. */
unsigned char *
-android_lock_bitmap (android_window drawable,
+android_lock_bitmap (android_drawable drawable,
AndroidBitmapInfo *bitmap_info,
jobject *bitmap_return)
{
object,
drawable_class.get_bitmap);
if (!bitmap)
- /* NULL is returned when the bitmap does not currently exist due
- to ongoing reconfiguration on the main thread. */
- return NULL;
+ {
+ /* Report any exception signaled. */
+ android_exception_check ();
+
+ /* If no exception was signaled, then NULL was returned as the
+ bitmap does not presently exist due to window reconfiguration
+ on the main thread. */
+ return NULL;
+ }
memset (bitmap_info, 0, sizeof *bitmap_info);