Home | History | Annotate | Download | only in camera2basic

Lines Matching defs:texture

139         public void onSurfaceTextureAvailable(SurfaceTexture texture, int width, int height) {
144 public void onSurfaceTextureSizeChanged(SurfaceTexture texture, int width, int height) {
149 public boolean onSurfaceTextureDestroyed(SurfaceTexture texture) {
154 public void onSurfaceTextureUpdated(SurfaceTexture texture) {
370 * is at least as large as the respective texture view size, and that is at most as large as the
377 * @param textureViewWidth The width of the texture view relative to sensor coordinate
378 * @param textureViewHeight The height of the texture view relative to sensor coordinate
431 mTextureView = (AutoFitTextureView) view.findViewById(R.id.texture);
677 SurfaceTexture texture = mTextureView.getSurfaceTexture();
678 assert texture != null;
681 texture.setDefaultBufferSize(mPreviewSize.getWidth(), mPreviewSize.getHeight());
684 Surface surface = new Surface(texture);