Home | History | Annotate | Download | only in jni

Lines Matching defs:bm

26     SkBitmap* bm = GraphicsJNI::getNativeBitmap(env, jbitmap);
27 if (NULL == bm) {
32 info->width = bm->width();
33 info->height = bm->height();
34 info->stride = bm->rowBytes();
37 switch (bm->config()) {
63 SkBitmap* bm = GraphicsJNI::getNativeBitmap(env, jbitmap);
64 if (NULL == bm) {
68 bm->lockPixels();
69 void* addr = bm->getPixels();
71 bm->unlockPixels();
86 SkBitmap* bm = GraphicsJNI::getNativeBitmap(env, jbitmap);
87 if (NULL == bm) {
95 bm->notifyPixelsChanged();
97 bm->unlockPixels();