HomeSort by relevance Sort by last modified time
    Searched refs:surfaceControl (Results 1 - 10 of 10) sorted by null

  /frameworks/base/libs/input/
SpriteController.cpp 94 void SpriteController::disposeSurfaceLocked(const sp<SurfaceControl>& surfaceControl) {
96 mLocked.disposedSurfaces.push(surfaceControl);
139 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) {
144 update.state.surfaceControl = obtainSurface(
146 if (update.state.surfaceControl != NULL) {
157 if (update.state.surfaceControl != NULL && update.state.wantSurfaceVisible()) {
167 status_t status = update.state.surfaceControl->setSize(desiredWidth, desiredHeight);
179 status = update.state.surfaceControl->hide();
203 if (update.state.surfaceControl != NULL && !update.state.surfaceDraw
    [all...]
SpriteController.h 194 sp<SurfaceControl> surfaceControl;
234 inline void setSurfaceLocked(const sp<SurfaceControl>& surfaceControl,
236 mLocked.state.surfaceControl = surfaceControl;
275 Vector<sp<SurfaceControl> > disposedSurfaces;
281 void disposeSurfaceLocked(const sp<SurfaceControl>& surfaceControl);
288 sp<SurfaceControl> obtainSurface(int32_t width, int32_t height)
    [all...]
  /frameworks/native/cmds/flatland/
GLHelper.h 20 #include <gui/SurfaceControl.h>
28 class SurfaceControl;
59 sp<SurfaceControl>* surfaceControl, EGLSurface* surface);
GLHelper.cpp 247 sp<SurfaceControl>* surfaceControl, EGLSurface* surface) {
260 sp<SurfaceControl> sc = mSurfaceComposerClient->createSurface(
263 fprintf(stderr, "Failed to create SurfaceControl.\n");
299 *surfaceControl = sc;
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 39 sp<SurfaceControl> surfaceControl;
758 surfaceControl = client->createSurface(String8("camera_test_menu"),
763 previewSurface = surfaceControl->getSurface();
766 surfaceControl->setLayer(0x7fffffff);
767 surfaceControl->setPosition(0, 0);
768 surfaceControl->setSize(previewWidth, previewHeight);
769 surfaceControl->show();
806 if ( NULL != surfaceControl.get() ) {
807 surfaceControl->clear()
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
Session.java 46 import android.view.SurfaceControl;
346 final SurfaceControl surfaceControl = mService.mDragState.mSurfaceControl;
349 SurfaceControl.openTransaction();
351 surfaceControl.setPosition(touchX - thumbCenterX,
353 surfaceControl.setLayer(mService.mDragState.getDragLayerLw());
354 surfaceControl.setLayerStack(display.getLayerStack());
355 surfaceControl.show();
357 SurfaceControl.closeTransaction();
WindowSurfacePlacer.java 70 import android.view.SurfaceControl;
153 private final ArrayList<SurfaceControl> mPendingDestroyingSurfaces = new ArrayList<>();
319 SurfaceControl.openTransaction();
325 SurfaceControl.closeTransaction();
    [all...]
AccessibilityController.java 51 import android.view.SurfaceControl;
661 private final SurfaceControl mSurfaceControl;
672 SurfaceControl surfaceControl = null;
675 surfaceControl = new SurfaceControl(mWindowManagerService.mFxSession,
677 SurfaceControl.HIDDEN);
681 mSurfaceControl = surfaceControl;
    [all...]
  /hardware/ti/omap4-aah/test/CameraHal/
camera_test_menu.cpp 55 sp<SurfaceControl> surfaceControl;
898 surfaceControl = client->createSurface(0,
903 previewSurface = surfaceControl->getSurface();
906 surfaceControl->setLayer(0x7fffffff);
907 surfaceControl->setPosition(0, 0);
908 surfaceControl->setSize(previewWidth, previewHeight);
909 surfaceControl->show();
959 if ( NULL != surfaceControl.get() ) {
960 surfaceControl->clear()
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
ColorFade.java 43 import android.view.SurfaceControl;
85 private SurfaceControl mSurfaceControl;
483 SurfaceControl.screenshot(SurfaceControl.getBuiltInDisplay(
484 SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN), s);
573 SurfaceControl.openTransaction();
579 flags = SurfaceControl.FX_SURFACE_DIM | SurfaceControl.HIDDEN;
581 flags = SurfaceControl.OPAQUE | SurfaceControl.HIDDEN
    [all...]

Completed in 572 milliseconds