Searched refs:mTextureView (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGetBitmapActivity.java38 private TextureView mTextureView; field in class:GetBitmapActivity
46 mTextureView = new TextureView(this);
47 mTextureView.setSurfaceTextureListener(this);
54 Bitmap b = mTextureView.getBitmap();
73 content.addView(mTextureView, new FrameLayout.LayoutParams(500, 400, Gravity.CENTER));
H A DTextureViewActivity.java42 private TextureView mTextureView; field in class:TextureViewActivity
52 mTextureView = new TextureView(this);
53 mTextureView.setSurfaceTextureListener(this);
54 mTextureView.setOnClickListener(new View.OnClickListener() {
57 Bitmap b = mTextureView.getBitmap(800, 800);
83 mContent.removeView(mTextureView);
85 mContent.addView(mTextureView);
91 mContent.addView(mTextureView, new FrameLayout.LayoutParams(
106 mTextureView.setLayoutParams(new FrameLayout.LayoutParams(
H A DCanvasTextureViewActivity.java32 private TextureView mTextureView; field in class:CanvasTextureViewActivity
41 mTextureView = new TextureView(this);
42 mTextureView.setSurfaceTextureListener(this);
43 mTextureView.setOpaque(false);
45 content.addView(mTextureView, new FrameLayout.LayoutParams(500, 500, Gravity.CENTER));
51 mThread = new RenderingThread(mTextureView);
H A DGLTextureViewActivity.java56 private TextureView mTextureView; field in class:GLTextureViewActivity
62 mTextureView = new TextureView(this);
63 mTextureView.setSurfaceTextureListener(this);
64 mTextureView.setOnClickListener(new View.OnClickListener() {
67 Bitmap b = mTextureView.getBitmap(800, 800);
85 setContentView(mTextureView, new FrameLayout.LayoutParams(
95 mTextureView.setCameraDistance(5000);
97 ObjectAnimator animator = ObjectAnimator.ofFloat(mTextureView, "rotationY", 0.0f, 360.0f);
104 mTextureView.invalidate();
/frameworks/base/services/java/com/android/server/display/
H A DOverlayDisplayWindow.java79 private TextureView mTextureView; field in class:OverlayDisplayWindow
155 if (mTextureView != null) {
156 pw.println("mTextureView.getScaleX()=" + mTextureView.getScaleX());
157 pw.println("mTextureView.getScaleY()=" + mTextureView.getScaleY());
180 mTextureView = (TextureView)mWindowContent.findViewById(
182 mTextureView.setPivotX(0);
183 mTextureView.setPivotY(0);
184 mTextureView
[all...]

Completed in 116 milliseconds