HomeSort by relevance Sort by last modified time
    Searched refs:Surface (Results 101 - 125 of 340) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/native/cmds/flatland/
GLHelper.h 19 #include <gui/Surface.h>
52 bool makeCurrent(EGLSurface surface);
55 sp<GLConsumer>* surfaceTexture, EGLSurface* surface,
59 sp<SurfaceControl>* surfaceControl, EGLSurface* surface);
61 void destroySurface(EGLSurface* surface);
63 bool swapBuffers(EGLSurface surface);
72 sp<GLConsumer>* surfaceTexture, EGLSurface* surface);
  /frameworks/native/include/ui/
FramebufferNativeWindow.h 40 class Surface;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RenderScriptThunker.java 25 import android.view.Surface;
  /hardware/libhardware/tests/camera2/
CameraStreamTests.cpp 30 #include <gui/Surface.h>
  /frameworks/base/services/java/com/android/server/power/
ElectronBeam.java 38 import android.view.Surface.OutOfResourcesException;
39 import android.view.Surface;
61 // The layer for the electron beam surface.
86 private Surface mSurface;
140 // This is not expected to change while the electron beam surface is showing.
146 // Prepare the surface for drawing.
183 * Dismisses the electron beam animation surface and cleans up.
394 final Surface s = new Surface(st);
520 Slog.e(TAG, "Unable to create surface.", ex)
    [all...]
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 34 import android.view.Surface;
391 case Surface.ROTATION_0:
395 case Surface.ROTATION_90:
399 case Surface.ROTATION_180:
403 case Surface.ROTATION_270:
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ChildProcessLauncher.java 10 import android.view.Surface;
412 int pid, Surface surface, int primaryID, int secondaryID) {
420 nativeEstablishSurfacePeer(pid, surface, primaryID, secondaryID);
424 public Surface getViewSurface(int surfaceId) {
425 // Do not allow a malicious renderer to get to our view surface.
444 private static native Surface nativeGetViewSurface(int surfaceId);
446 int pid, Surface surface, int primaryID, int secondaryID);
ContentViewRenderView.java 9 import android.view.Surface;
169 * @return whether the surface view is initialized and ready to render.
179 private native void nativeSurfaceCreated(int nativeContentViewRenderView, Surface surface);
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
VideoCapture.java 15 import android.view.Surface;
400 case Surface.ROTATION_90:
403 case Surface.ROTATION_180:
406 case Surface.ROTATION_270:
409 case Surface.ROTATION_0:
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
Display.cpp 24 #include "libEGL/Surface.h"
237 Surface *surface = new Surface(this, configuration, window, postSubBufferSupported); local
239 if (!surface->initialize())
241 delete surface;
245 mSurfaceSet.insert(surface);
247 return success(surface);
350 Surface *surface = new Surface(this, configuration, shareHandle, width, height, textureFormat, textureTarget) local
    [all...]
  /frameworks/base/core/java/android/hardware/display/
DisplayManager.java 23 import android.view.Surface;
394 * The content of a virtual display is rendered to a {@link Surface} provided
398 * when no longer needed. Because a virtual display renders to a surface
411 * @param surface The surface to which the content of the virtual display should
423 int width, int height, int densityDpi, Surface surface, int flags) {
425 name, width, height, densityDpi, surface, flags);
  /frameworks/base/core/java/com/android/internal/view/
RotationPolicy.java 31 import android.view.Surface;
133 wm.freezeRotation(Surface.ROTATION_0);
  /frameworks/base/core/jni/
android_opengl_EGLExt.cpp 30 #include <gui/Surface.h>
32 #include <gui/Surface.h>
  /frameworks/base/graphics/java/android/renderscript/
RenderScriptGL.java 27 import android.view.Surface;
53 * This is used to describe the intended format of the display surface.
107 * configures the surface for an unsigned integer buffer type.
120 * Set the bit depth for alpha. This configures the surface for
135 * surface for an unsigned integer buffer type. If a minimum of 0
177 * @param sc The desired format of the primary rendering surface.
205 * Bind an os surface
214 Surface s = null;
225 * Bind an os surface
233 //android.util.Log.v("rs", "set surface " + sur + " w=" + w + ", h=" + h)
    [all...]
  /frameworks/base/services/java/com/android/server/display/
DisplayDeviceInfo.java 21 import android.view.Surface;
150 * relative to its physical coordinate system. Default is {@link Surface#ROTATION_0}.
157 public int rotation = Surface.ROTATION_0;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
SurfaceHolderTarget.java 25 import android.view.Surface;
120 Surface surface = mSurfaceHolder.getSurface(); local
121 mHasSurface = (surface != null) && surface.isValid();
128 // Synchronize the surface holder in case another filter is accessing this surface.
  /frameworks/native/opengl/tools/glgen/stubs/egl/
EGL14cHeader.cpp 29 #include <gui/Surface.h>
31 #include <gui/Surface.h>
EGLExtcHeader.cpp 30 #include <gui/Surface.h>
32 #include <gui/Surface.h>
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
CallbackProcessor.java 17 import android.view.Surface;
31 private Surface mCallbackSurface;
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
ImageReaderTest.java 37 import android.view.Surface;
48 * sends the data to the surface provided by imageReader. Below image formats
220 List<Surface> outputSurfaces = new ArrayList<Surface>(1);
221 Surface surface = mReader.getSurface(); local
222 assertNotNull("Fail to get surface from ImageReader", surface);
223 outputSurfaces.add(surface);
  /device/asus/flo/camera/QCamera2/HAL/test/
qcamera_test.h 115 sp<Surface> mPreviewSurface;
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
main.cpp 74 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface)
81 if (context && display && surface)
83 context->makeCurrent(surface);
  /frameworks/av/include/media/
IMediaPlayer.h 33 class Surface;
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3Stream.h 20 #include <gui/Surface.h>
  /frameworks/base/core/java/android/hardware/
LegacySensorManager.java 23 import android.view.Surface;
36 private static int sRotation = Surface.ROTATION_0;
314 if ((orientation & Surface.ROTATION_90) != 0) {
331 if ((orientation & Surface.ROTATION_180) != 0) {

Completed in 596 milliseconds

1 2 3 45 6 7 8 91011>>