Lines Matching defs:nativeBitmap

306     /*package*/ static void nativeDestructor(int nativeBitmap) {
307 sManager.removeJavaReferenceFor(nativeBitmap);
311 /*package*/ static boolean nativeRecycle(int nativeBitmap) {
312 sManager.removeJavaReferenceFor(nativeBitmap);
317 /*package*/ static boolean nativeCompress(int nativeBitmap, int format, int quality,
325 /*package*/ static void nativeErase(int nativeBitmap, int color) {
327 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
345 /*package*/ static int nativeWidth(int nativeBitmap) {
347 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
356 /*package*/ static int nativeHeight(int nativeBitmap) {
358 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
367 /*package*/ static int nativeRowBytes(int nativeBitmap) {
369 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
378 /*package*/ static int nativeConfig(int nativeBitmap) {
380 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
389 /*package*/ static boolean nativeHasAlpha(int nativeBitmap) {
391 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
400 /*package*/ static boolean nativeHasMipMap(int nativeBitmap) {
402 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
411 /*package*/ static int nativeGetPixel(int nativeBitmap, int x, int y) {
413 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
422 /*package*/ static void nativeGetPixels(int nativeBitmap, int[] pixels, int offset,
424 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
434 /*package*/ static void nativeSetPixel(int nativeBitmap, int x, int y, int color) {
435 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
444 /*package*/ static void nativeSetPixels(int nativeBitmap, int[] colors, int offset,
446 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
455 /*package*/ static void nativeCopyPixelsToBuffer(int nativeBitmap, Buffer dst) {
469 /*package*/ static int nativeGenerationId(int nativeBitmap) {
470 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
489 /*package*/ static boolean nativeWriteToParcel(int nativeBitmap, boolean isMutable,
500 /*package*/ static Bitmap nativeExtractAlpha(int nativeBitmap, int nativePaint,
502 Bitmap_Delegate bitmap = sManager.getDelegate(nativeBitmap);
528 /*package*/ static void nativePrepareToDraw(int nativeBitmap) {
533 /*package*/ static void nativeSetHasAlpha(int nativeBitmap, boolean hasAlpha) {
535 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
544 /*package*/ static void nativeSetHasMipMap(int nativeBitmap, boolean hasMipMap) {
546 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);