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

  /frameworks/native/services/surfaceflinger/tests/resize/
resize.cpp 41 sp<SurfaceControl> surfaceControl = client->createSurface(String8("resize"),
44 sp<Surface> surface = surfaceControl->getSurface();
47 surfaceControl->setLayer(100000);
61 surfaceControl->setSize(320, 240);
  /frameworks/base/libs/input/
SpriteController.cpp 90 void SpriteController::disposeSurfaceLocked(const sp<SurfaceControl>& surfaceControl) {
92 mLocked.disposedSurfaces.push(surfaceControl);
135 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) {
140 update.state.surfaceControl = obtainSurface(
142 if (update.state.surfaceControl != NULL) {
153 if (update.state.surfaceControl != NULL && update.state.wantSurfaceVisible()) {
163 status_t status = update.state.surfaceControl->setSize(desiredWidth, desiredHeight);
175 status = update.state.surfaceControl->hide();
199 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 45 import android.view.SurfaceControl;
328 final SurfaceControl surfaceControl = mService.mDragState.mSurfaceControl;
331 SurfaceControl.openTransaction();
333 surfaceControl.setPosition(touchX - thumbCenterX,
335 surfaceControl.setAlpha(.7071f);
336 surfaceControl.setLayer(mService.mDragState.getDragLayerLw());
337 surfaceControl.setLayerStack(display.getLayerStack());
338 surfaceControl.show();
340 SurfaceControl.closeTransaction()
    [all...]
AccessibilityController.java 46 import android.view.SurfaceControl;
621 private final SurfaceControl mSurfaceControl;
632 SurfaceControl surfaceControl = null;
635 surfaceControl = new SurfaceControl(mWindowManagerService.mFxSession,
637 SurfaceControl.HIDDEN);
641 mSurfaceControl = surfaceControl;
    [all...]
WindowManagerService.java 127 import android.view.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 45 import android.view.SurfaceControl;
87 private SurfaceControl mSurfaceControl;
465 SurfaceControl.screenshot(SurfaceControl.getBuiltInDisplay(
466 SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN), s);
555 SurfaceControl.openTransaction();
561 flags = SurfaceControl.FX_SURFACE_DIM | SurfaceControl.HIDDEN;
563 flags = SurfaceControl.OPAQUE | SurfaceControl.HIDDEN
    [all...]

Completed in 1034 milliseconds