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

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DTextureSource.java25 public class TextureSource { class
32 public static TextureSource fromTexture(int texId, int target) {
33 return new TextureSource(texId, target, false);
36 public static TextureSource fromTexture(int texId) {
37 return new TextureSource(texId, GLES20.GL_TEXTURE_2D, false);
40 public static TextureSource newTexture() {
41 return new TextureSource(GLToolbox.generateTexture(), GLES20.GL_TEXTURE_2D, true);
44 public static TextureSource newExternalTexture() {
45 return new TextureSource(GLToolbox.generateTexture(),
64 //Log.i("TextureSource", "Allocatin
115 private TextureSource(int texId, int target, boolean isOwner) { method in class:TextureSource
[all...]

Completed in 39 milliseconds