HomeSort by relevance Sort by last modified time
    Searched refs:nativeBitmap (Results 1 - 6 of 6) sorted by null

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Bitmap_Delegate.java 284 /*package*/ static void nativeDestructor(long nativeBitmap) {
285 sManager.removeJavaReferenceFor(nativeBitmap);
289 /*package*/ static boolean nativeRecycle(long nativeBitmap) {
290 sManager.removeJavaReferenceFor(nativeBitmap);
295 /*package*/ static void nativeReconfigure(long nativeBitmap, int width, int height,
302 /*package*/ static boolean nativeCompress(long nativeBitmap, int format, int quality,
310 /*package*/ static void nativeErase(long nativeBitmap, int color) {
312 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
330 /*package*/ static int nativeRowBytes(long nativeBitmap) {
332 Bitmap_Delegate delegate = sManager.getDelegate(nativeBitmap);
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 108 Bitmap(long nativeBitmap, byte[] buffer, int width, int height, int density,
111 if (nativeBitmap == 0) {
127 mNativePtr = nativeBitmap;
128 mFinalizer = new BitmapFinalizer(nativeBitmap);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusimpl.h 410 GpBitmap *nativeBitmap = NULL;
412 gdiBitmapInfo, gdiBitmapData, &nativeBitmap);
413 nativeImage = nativeBitmap;
418 GpBitmap *nativeBitmap = NULL;
420 surface, &nativeBitmap);
421 nativeImage = nativeBitmap;
427 GpBitmap *nativeBitmap = NULL;
430 filename, &nativeBitmap);
433 filename, &nativeBitmap);
435 nativeImage = nativeBitmap;
    [all...]
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 280 SkBitmap nativeBitmap;
281 GraphicsJNI::getSkBitmap(_env, native_pixmap, &nativeBitmap);
282 SkPixelRef* ref = nativeBitmap.pixelRef();
293 pixmap.width = nativeBitmap.width();
294 pixmap.height = nativeBitmap.height();
295 pixmap.stride = nativeBitmap.rowBytes() / nativeBitmap.bytesPerPixel();
296 pixmap.format = convertPixelFormat(nativeBitmap.colorType());
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 731 Bitmap* nativeBitmap = GraphicsJNI::allocateJavaPixelRef(env, &bitmap, NULL);
732 if (!nativeBitmap) {
741 return GraphicsJNI::createBitmap(env, nativeBitmap,
995 Bitmap* nativeBitmap;
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 719 SkBitmap nativeBitmap;
720 GraphicsJNI::getSkBitmap(env, jbitmap, &nativeBitmap);
721 return getInternalFormat(nativeBitmap.colorType());
727 SkBitmap nativeBitmap;
728 GraphicsJNI::getSkBitmap(env, jbitmap, &nativeBitmap);
729 return getType(nativeBitmap.colorType());
    [all...]

Completed in 64 milliseconds