HomeSort by relevance Sort by last modified time
    Searched defs:mSurface (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/chromium_org/content/public/android/java/src/org/chromium/content/common/
SurfaceWrapper.java 15 private final Surface mSurface;
18 mSurface = surface;
22 return mSurface;
33 mSurface.writeToParcel(out, 0);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
Image9.h 74 IDirect3DSurface9 *mSurface;
  /cts/tests/tests/media/src/android/media/cts/
CompositionTextureView.java 36 private Surface mSurface;
112 if (mSurface == null && surfaceTexture != null) {
115 return (mSurface != null);
119 if (mSurface != null) {
120 mSurface.release();
122 mSurface = new Surface(surfaceTexture);
126 return mSurface;
InputSurface.java 45 private Surface mSurface;
54 mSurface = surface;
106 mEGLSurface = EGL14.eglCreateWindowSurface(mEGLDisplay, configs[0], mSurface,
126 mSurface.release();
132 mSurface = null;
162 return mSurface;
OutputSurface.java 53 private Surface mSurface;
116 mSurface = new Surface(mSurfaceTexture);
187 mSurface.release();
198 mSurface = null;
215 return mSurface;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/
ProjectionActivity.java 49 protected volatile Surface mSurface;
67 mService.startRendering(mSurface, mWidth, mHeight, metrics.densityDpi, mType.ordinal());
122 mSurface = new Surface(surface);
142 mSurface.release();
143 mSurface = null;
  /external/chromium_org/third_party/angle/src/libGLESv2/
Texture.h 138 egl::Surface *mSurface;
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.h 138 sp<IBinder> mSurface;
  /frameworks/native/libs/gui/tests/
MultiTextureConsumer_test.cpp 42 mSurface = new Surface(producer);
43 mANW = mSurface.get();
64 sp<Surface> mSurface;
108 mSurface->lock(&buffer, NULL);
110 mSurface->unlockAndPost();
Surface_test.cpp 54 mSurface = mSurfaceControl->getSurface();
55 ASSERT_TRUE(mSurface != NULL);
62 sp<Surface> mSurface;
68 sp<ANativeWindow> anw(mSurface);
79 sp<ANativeWindow> anw(mSurface);
89 sp<ANativeWindow> anw(mSurface);
132 sp<ANativeWindow> anw(mSurface);
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
SurfaceTextureRenderer.java 87 private SurfaceTexture mSurface = null;
106 mSurface.updateTexImage();
108 mSurface.getTransformMatrix(mSTMatrix);
220 if (mSurface != null) {
221 mSurface.release();
223 mSurface = new SurfaceTexture(mTextureID);
224 mSurface.setOnFrameAvailableListener(this);
299 return mSurface;
  /frameworks/base/core/java/android/hardware/display/
VirtualDisplay.java 39 private Surface mSurface;
46 mSurface = surface;
60 return mSurface;
76 if (mSurface != surface) {
78 mSurface = surface;
111 + ", surface=" + mSurface + "}";
  /development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 86 mSurface.updateTexImage();
88 mSurface.getTransformMatrix(mSTMatrix);
204 mSurface = new SurfaceTexture(mTextureID);
205 mSurface.setOnFrameAvailableListener(this);
325 private SurfaceTexture mSurface;
334 return mSurface;
  /frameworks/base/core/java/android/view/
TextureView.java 108 private SurfaceTexture mSurface;
237 shouldRelease = mListener.onSurfaceTextureDestroyed(mSurface);
245 if (shouldRelease) mSurface.release();
246 mSurface = null;
327 if (mSurface != null) {
328 mSurface.setDefaultBufferSize(getWidth(), getHeight());
331 mListener.onSurfaceTextureSizeChanged(mSurface, getWidth(), getHeight());
361 mSurface = new SurfaceTexture(false);
362 mLayer.setSurfaceTexture(mSurface);
364 mSurface.setDefaultBufferSize(getWidth(), getHeight())
    [all...]
  /frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 98 mSurface.updateTexImage();
100 mSurface.getTransformMatrix(mSTMatrix);
216 mSurface = new SurfaceTexture(mTextureID);
217 mSurface.setOnFrameAvailableListener(this);
337 private SurfaceTexture mSurface;
346 return mSurface;
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 100 EGLDisplay mSurface;
  /frameworks/base/services/core/java/com/android/server/wm/
CircularDisplayMask.java 45 private final Surface mSurface = new Surface();
78 mSurface.copyFrom(ctrl);
98 c = mSurface.lockCanvas(dirty);
126 mSurface.unlockCanvasAndPost(c);
EmulatorDisplayOverlay.java 42 private final Surface mSurface = new Surface();
69 mSurface.copyFrom(ctrl);
87 c = mSurface.lockCanvas(dirty);
98 mSurface.unlockCanvasAndPost(c);
FocusedStackFrame.java 42 private final Surface mSurface = new Surface();
59 mSurface.copyFrom(ctrl);
71 c = mSurface.lockCanvas(mTmpDrawRect);
99 mSurface.unlockCanvasAndPost(c);
StrictModeFlash.java 35 private final Surface mSurface = new Surface();
50 mSurface.copyFrom(ctrl);
68 c = mSurface.lockCanvas(dirty);
89 mSurface.unlockCanvasAndPost(c);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
CanvasTextureViewActivity.java 72 private final TextureView mSurface;
76 mSurface = surface;
90 final Canvas canvas = mSurface.lockCanvas(null);
95 mSurface.unlockCanvasAndPost(canvas);
98 if (x + 20.0f + speedX >= mSurface.getWidth() || x + speedX <= 0.0f) {
101 if (y + 20.0f + speedY >= mSurface.getHeight() || y + speedY <= 0.0f) {
HardwareCanvasSurfaceViewActivity.java 69 private final Surface mSurface;
74 mSurface = surface;
93 final Canvas canvas = mSurface.lockHardwareCanvas();
98 mSurface.unlockCanvasAndPost(canvas);
HardwareCanvasTextureViewActivity.java 74 private final Surface mSurface;
79 mSurface = new Surface(mView.getSurfaceTexture());
93 final Canvas canvas = mSurface.lockHardwareCanvas();
98 mSurface.unlockCanvasAndPost(canvas);
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
SurfaceViewSubPane.java 43 private Surface mSurface;
146 return mSurface;
164 mSurface = holder.getSurface();
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
Camera2Source.java 63 private Surface mSurface;
135 mSurface.release();
178 mSurface = mAllocationIn.getSurface();
189 surfaces.add(mSurface);
196 mCaptureRequest.addTarget(mSurface);

Completed in 697 milliseconds

1 2 3 4