| 237 | return new LVColorDrawBufEx( width, height, pixels, bpp ); |
| 238 | } |
| 239 | virtual void unlock(JNIEnv* env, jobject jbitmap, LVDrawBuf * buf ) { |
| 240 | LVColorDrawBufEx * bmp = (LVColorDrawBufEx*)buf; |
| 241 | bmp->convert(); |
| 242 | AndroidBitmap_unlockPixels(env, jbitmap); |
| 243 | delete buf; |
| 244 | } |
| 245 | |
| 246 | void * getProc( const char * procName ) |
| 247 | { |
no test coverage detected