Home | History | Annotate | Download | only in filterfw

Lines Matching refs:mTexId

27     private int mTexId;
51 return mTexId;
59 GLES20.glBindTexture(mTarget, mTexId);
64 //Log.i("TextureSource", "Allocating empty texture " + mTexId + ": " + width + "x" + height + ".");
65 GLToolbox.allocateTexturePixels(mTexId, mTarget, width, height);
70 //Log.i("TextureSource", "Uploading pixels to texture " + mTexId + ": " + width + "x" + height + ".");
71 GLToolbox.setTexturePixels(mTexId, mTarget, pixels, width, height);
76 //Log.i("TextureSource", "Uploading pixels to texture " + mTexId + "!");
77 GLToolbox.setTexturePixels(mTexId, mTarget, bitmap);
82 GLES20.glBindTexture(mTarget, mTexId);
91 GLES20.glBindTexture(mTarget, mTexId);
100 if (GLToolbox.isTexture(mTexId) && mIsOwner) {
101 GLToolbox.deleteTexture(mTexId);
103 mTexId = GLToolbox.textureNone();
108 return "TextureSource(id=" + mTexId + ", target=" + mTarget + ")";
116 mTexId = texId;