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

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GLToolbox.java 38 public static boolean isTexture(int texId) {
39 return GLES20.glIsTexture(texId);
42 public static void deleteTexture(int texId) {
43 int[] textures = new int[] { texId };
93 public static void attachTextureToFbo(int texId, int fboId) {
98 texId,
103 public static void allocateTexturePixels(int texId, int target, int width, int height) {
104 setTexturePixels(texId, target, (ByteBuffer)null, width, height);
107 public static void setTexturePixels(int texId, int target, Bitmap bitmap) {
108 GLES20.glBindTexture(target, texId);
    [all...]
TextureSource.java 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);
115 private TextureSource(int texId, int target, boolean isOwner) {
116 mTexId = texId;
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 83 int texId = generateTexture();
84 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, texId);
86 return texId;
89 public void releaseTexture(int texId) {
91 textures[0] = texId;
  /frameworks/base/media/mca/effect/java/android/media/effect/
FilterEffect.java 85 protected Frame frameFromTexture(int texId, int width, int height) {
92 texId);
  /developers/build/prebuilts/gradle/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/
TextureRenderer.java 105 public void renderTexture(int texId) {
132 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, texId);
  /developers/samples/android/media/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/
TextureRenderer.java 105 public void renderTexture(int texId) {
132 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, texId);
  /development/samples/HelloEffects/src/com/example/android/mediafx/
TextureRenderer.java 105 public void renderTexture(int texId) {
132 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, texId);
  /development/samples/browseable/MediaEffects/src/com.example.android.mediaeffects/
TextureRenderer.java 105 public void renderTexture(int texId) {
132 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, texId);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GLFrame.java 126 private void initWithTexture(int texId) {
129 if (!nativeAllocateWithTexture(mGLEnvironment, texId, width, height)) {
  /packages/apps/Camera/jni/
mosaic_renderer_jni.cpp 209 void bindSurfaceTexture(GLuint texId)
211 glBindTexture(GL_TEXTURE_EXTERNAL_OES_ENUM, texId);
  /packages/apps/LegacyCamera/jni/
mosaic_renderer_jni.cpp 186 void bindSurfaceTexture(GLuint texId)
188 glBindTexture(GL_TEXTURE_EXTERNAL_OES_ENUM, texId);
  /external/deqp/modules/gles3/functional/
es3fShaderTextureFunctionTests.cpp     [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 370 milliseconds