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

1 2 3

  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Image9.h 45 virtual bool isDirty() const {return mSurface && mDirty;}
75 IDirect3DSurface9 *mSurface;
  /frameworks/av/libvideoeditor/lvpp/
PreviewRenderer.h 55 sp<Surface> mSurface;
  /frameworks/base/core/java/android/view/
GLES20TextureLayer.java 31 private SurfaceTexture mSurface;
75 if (mSurface == null) {
76 mSurface = new SurfaceTexture(mTexture);
78 return mSurface;
82 if (mSurface != null) {
83 mSurface.release();
85 mSurface = surfaceTexture;
86 mSurface.attachToGLContext(mTexture);
92 GLES20Canvas.nUpdateTextureLayer(mLayer, width, height, isOpaque, mSurface);
TextureView.java 109 private SurfaceTexture mSurface;
232 mSurface.detachFromGLContext();
239 shouldRelease = mListener.onSurfaceTextureDestroyed(mSurface);
247 if (shouldRelease) mSurface.release();
248 mSurface = null;
324 if (mSurface != null) {
325 mSurface.setDefaultBufferSize(getWidth(), getHeight());
328 mListener.onSurfaceTextureSizeChanged(mSurface, getWidth(), getHeight());
363 mSurface = mAttachInfo.mHardwareRenderer.createSurfaceTexture(mLayer);
365 mSurface.setDefaultBufferSize(getWidth(), getHeight())
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.h 136 sp<IBinder> mSurface;
  /frameworks/native/libs/gui/tests/
Surface_test.cpp 53 mSurface = mSurfaceControl->getSurface();
54 ASSERT_TRUE(mSurface != NULL);
61 sp<Surface> mSurface;
67 sp<ANativeWindow> anw(mSurface);
78 sp<ANativeWindow> anw(mSurface);
88 sp<ANativeWindow> anw(mSurface);
129 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;
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Texture.h 189 egl::Surface *mSurface;
  /cts/tests/tests/media/src/android/media/cts/
InputSurface.java 46 private Surface mSurface;
55 mSurface = surface;
107 mEGLSurface = EGL14.eglCreateWindowSurface(mEGLDisplay, configs[0], mSurface,
127 mSurface.release();
133 mSurface = null;
163 return mSurface;
OutputSurface.java 53 private Surface mSurface;
112 mSurface = new Surface(mSurfaceTexture);
183 mSurface.release();
194 mSurface = null;
211 return mSurface;
  /frameworks/base/services/java/com/android/server/display/
VirtualDisplayAdapter.java 105 private Surface mSurface;
119 mSurface = surface;
126 if (mSurface != null) {
133 if (mSurface != null) {
134 mSurface.release();
135 mSurface = null;
142 if (mSurface != null) {
143 setSurfaceInTransactionLocked(mSurface);
OverlayDisplayAdapter.java 197 private Surface mSurface;
216 if (mSurface != null) {
217 mSurface.release();
218 mSurface = null;
226 if (mSurface == null) {
227 mSurface = new Surface(mSurfaceTexture);
229 setSurfaceInTransactionLocked(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/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 95 EGLDisplay mSurface;
  /frameworks/base/services/java/com/android/server/wm/
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) {
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CameraCaptureResultTest.java 53 private Surface mSurface;
141 outputSurfaces.add(mSurface);
149 requestBuilder.addTarget(mSurface);
187 mSurface.release();
258 mSurface = mImageReader.getSurface();
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
Camera2Source.java 59 private Surface mSurface;
129 mSurface.release();
172 mSurface = mAllocationIn.getSurface();
183 surfaces.add(mSurface);
188 mCaptureRequest.addTarget(mSurface);
  /frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
GL2CameraEye.java 188 mSurface.updateTexImage();
190 mSurface.getTransformMatrix(mSTMatrix);
191 long timestamp = mSurface.getTimestamp();
311 mSurface = new SurfaceTexture(mTextureID);
312 mSurface.setOnFrameAvailableListener(this);
314 mCamera.setPreviewTexture(mSurface);
499 private SurfaceTexture mSurface;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
CameraDeviceBinderTest.java 68 private Surface mSurface;
118 mSurface = mImageReader.getSurface();
134 /* ignored */30, mSurface);
136 request.addTarget(mSurface);
187 mSurface.release();
206 mSurface);
210 mCameraUser.createStream(/* ignored */0, /* ignored */0, /* ignored */0, mSurface));
228 mSurface);
232 mCameraUser.createStream(/* ignored */0, /* ignored */0, /* ignored */0, mSurface));
257 builder.addTarget(mSurface);
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
BlockingGLTextureView.java 318 private SurfaceTexture mSurface;
338 if (mSurface == null) {
349 mSurface = surface;
363 if (mSurface != null) {
365 mSurface.updateTexImage();
370 mSurface = null;
398 if (mEglHelper.createSurface(mSurface)) {
  /packages/apps/Gallery2/src/com/android/photos/views/
BlockingGLTextureView.java 318 private SurfaceTexture mSurface;
338 if (mSurface == null) {
349 mSurface = surface;
363 if (mSurface != null) {
365 mSurface.updateTexImage();
370 mSurface = null;
398 if (mEglHelper.createSurface(mSurface)) {
  /packages/apps/Launcher3/src/com/android/photos/views/
BlockingGLTextureView.java 318 private SurfaceTexture mSurface;
338 if (mSurface == null) {
349 mSurface = surface;
363 if (mSurface != null) {
365 mSurface.updateTexImage();
370 mSurface = null;
398 if (mEglHelper.createSurface(mSurface)) {

Completed in 667 milliseconds

1 2 3