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

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ExtTexture.java 27 private static float[] sCropRect = new float[4];
42 // The four values in sCropRect are: left, bottom, width, and
44 sCropRect[0] = 0;
45 sCropRect[1] = height;
46 sCropRect[2] = width;
47 sCropRect[3] = -height;
52 GL11Ext.GL_TEXTURE_CROP_RECT_OES, sCropRect, 0);
RawTexture.java 26 private final static float[] sCropRect = new float[4];
45 // The four values in sCropRect are: left, bottom, width, and
47 sCropRect[0] = 0;
48 sCropRect[1] = mHeight;
49 sCropRect[2] = mWidth;
50 sCropRect[3] = -mHeight;
56 GL11Ext.GL_TEXTURE_CROP_RECT_OES, sCropRect, 0);
UploadedTexture.java 214 static float[] sCropRect = new float[4];
233 // The four values in sCropRect are: left, bottom, width, and
235 sCropRect[0] = mBorder;
236 sCropRect[1] = mBorder + bHeight;
237 sCropRect[2] = bWidth;
238 sCropRect[3] = -bHeight;
244 GL11Ext.GL_TEXTURE_CROP_RECT_OES, sCropRect, 0);

Completed in 297 milliseconds