HomeSort by relevance Sort by last modified time
    Searched defs:mGL (Results 1 - 7 of 7) sorted by null

  /packages/apps/Camera/src/com/android/camera/ui/
BasicTexture.java 13 protected GL11 mGL;
25 mGL = gl;
63 mGL.glDeleteTextures(1, new int[]{mId}, 0);
GLRootView.java 75 private GL11 mGL;
247 if (mGL != null) {
249 Log.i(TAG, "GLObject has changed from " + mGL + " to " + gl);
251 mGL = gl;
292 mGL = gl;
308 GL11 gl = mGL;
341 GL11 gl = mGL;
360 if (!tex.bind(this, mGL)) {
376 GL11 gl = mGL;
522 mGL.glDrawElements(GL11.GL_TRIANGLE_STRIP
    [all...]
  /frameworks/base/libs/rs/
rsContext.h 151 bool checkVersion1_1() const {return (mGL.mMajorVersion > 1) || (mGL.mMinorVersion >= 1); }
152 bool checkVersion2_0() const {return mGL.mMajorVersion >= 2; }
168 bool ext_OES_texture_npot() const {return mGL.OES_texture_npot;}
169 bool ext_GL_IMG_texture_npot() const {return mGL.GL_IMG_texture_npot;}
207 } mGL;
  /packages/apps/Gallery3D/src/com/cooliris/media/
RenderView.java 59 private GL11 mGL = null;
283 mGL.glBindTexture(GL11.GL_TEXTURE_2D, texture.mId);
294 GL11 gl = mGL;
305 GL11 gl = mGL;
312 GL11 gl = mGL;
365 ((GL11Ext) mGL).glDrawTexfOES(x, mViewHeight - y - height, 0f, width, height);
371 ((GL11Ext) mGL).glDrawTexfOES(x, mViewHeight - y - height, 0f, width, height);
377 ((GL11Ext) mGL).glDrawTexiOES(x, (mViewHeight - y - height), 0, width, height);
382 ((GL11Ext) mGL).glDrawTexfOES(x, mViewHeight - y - height, z, width, height);
387 final GL11 gl = mGL;
    [all...]
MenuBar.java 63 private GL11 mGL;
114 if (mGL != gl) {
116 mGL = gl;
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 39 If we are raster, then mGL will be null, and mBitmap may or may not be
42 mGL will not be null. Thus both cannot be non-null, but its possible
45 private Bitmap mBitmap; // if not null, mGL must be null
46 private GL mGL; // if not null, mBitmap must be null
112 mGL = gl;
121 return mGL;
146 if (mGL != null) {
164 if (mGL != null) {
    [all...]
  /frameworks/base/core/java/android/view/
ViewRoot.java 211 GL11 mGL;
401 mGL = gl;
420 mGL = null;
    [all...]

Completed in 3175 milliseconds