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

  /external/skia/gm/
imagefromyuvtextures.cpp 97 void createYUVTextures(GrContext* context, GrBackendTexture yuvTextures[3]) {
105 yuvTextures[i] = gpu->createTestingOnlyBackendTexture(fYUVBmps[i].getPixels(),
114 void deleteYUVTextures(GrContext* context, GrBackendTexture yuvTextures[3]) {
122 if (yuvTextures[i].isValid()) {
123 gpu->deleteTestingOnlyBackendTexture(&yuvTextures[i]);
148 GrBackendTexture yuvTextures[3];
149 this->createYUVTextures(context, yuvTextures);
152 yuvTextures, sizes,
154 this->deleteYUVTextures(context, yuvTextures);
  /external/skqp/gm/
imagefromyuvtextures.cpp 97 void createYUVTextures(GrContext* context, GrBackendTexture yuvTextures[3]) {
105 yuvTextures[i] = gpu->createTestingOnlyBackendTexture(fYUVBmps[i].getPixels(),
114 void deleteYUVTextures(GrContext* context, GrBackendTexture yuvTextures[3]) {
122 if (yuvTextures[i].isValid()) {
123 gpu->deleteTestingOnlyBackendTexture(&yuvTextures[i]);
148 GrBackendTexture yuvTextures[3];
149 this->createYUVTextures(context, yuvTextures);
152 yuvTextures, sizes,
154 this->deleteYUVTextures(context, yuvTextures);
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
GlRectDrawerTest.java 149 final int yuvTextures[] = new int[3];
151 yuvTextures[i] = GlUtil.generateTexture(GLES20.GL_TEXTURE_2D);
157 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, yuvTextures[i]);
165 drawer.drawYuv(yuvTextures, RendererCommon.identityMatrix(), 0, 0, WIDTH, HEIGHT);
201 GLES20.glDeleteTextures(3, yuvTextures, 0);
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
SurfaceViewRenderer.java 72 private int[] yuvTextures = null;
225 if (yuvTextures != null) {
226 GLES20.glDeleteTextures(3, yuvTextures, 0);
227 yuvTextures = null;
501 if (yuvTextures == null) {
502 yuvTextures = new int[3];
504 yuvTextures[i] = GlUtil.generateTexture(GLES20.GL_TEXTURE_2D);
508 yuvTextures, frame.width, frame.height, frame.yuvStrides, frame.yuvPlanes);
509 drawer.drawYuv(yuvTextures, texMatrix, 0, 0, surfaceSize.x, surfaceSize.y);
VideoRendererGui.java 99 private int[] yuvTextures = { 0, 0, 0 };
191 // Generate 3 texture ids for Y/U/V and place them into |yuvTextures|.
193 yuvTextures[i] = GlUtil.generateTexture(GLES20.GL_TEXTURE_2D);
250 yuvUploader.uploadYuvData(yuvTextures, pendingFrame.width, pendingFrame.height,
283 drawer.drawYuv(yuvTextures, texMatrix,

Completed in 973 milliseconds