Searched refs:mInPixels (Results 1 – 1 of 1) sorted by relevance
56 int mInPixels[]; field in LevelsDalvikActivity157 mInPixels = new int[mBitmapIn.getHeight() * mBitmapIn.getWidth()]; in onCreate()159 mBitmapIn.getPixels(mInPixels, 0, mBitmapIn.getWidth(), 0, 0, in onCreate()183 for (int i=0; i < mInPixels.length; i++) { in filter()184 float r = (float)(mInPixels[i] & 0xff); in filter()185 float g = (float)((mInPixels[i] >> 8) & 0xff); in filter()186 float b = (float)((mInPixels[i] >> 16) & 0xff); in filter()224 + (mInPixels[i] & 0xff000000); in filter()