Searched defs:texId (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/mca/effect/java/android/media/effect/
H A DFilterEffect.java85 protected Frame frameFromTexture(int texId, int width, int height) { argument
92 texId);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGLToolbox.java38 public static boolean isTexture(int texId) { argument
39 return GLES20.glIsTexture(texId);
42 public static void deleteTexture(int texId) { argument
43 int[] textures = new int[] { texId };
93 public static void attachTextureToFbo(int texId, int fboId) { argument
98 texId,
103 public static void allocateTexturePixels(int texId, int target, int width, int height) { argument
104 setTexturePixels(texId, target, (ByteBuffer)null, width, height);
107 public static void setTexturePixels(int texId, int target, Bitmap bitmap) { argument
108 GLES20.glBindTexture(target, texId);
114 setTexturePixels(int texId, int target, ByteBuffer pixels, int width, int height) argument
[all...]
H A DTextureSource.java32 public static TextureSource fromTexture(int texId, int target) { argument
33 return new TextureSource(texId, target, false);
36 public static TextureSource fromTexture(int texId) { argument
37 return new TextureSource(texId, GLES20.GL_TEXTURE_2D, false);
115 private TextureSource(int texId, int target, boolean isOwner) { argument
116 mTexId = texId;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGLFrame.java126 private void initWithTexture(int texId) { argument
129 if (!nativeAllocateWithTexture(mGLEnvironment, texId, width, height)) {

Completed in 117 milliseconds