/frameworks/av/include/camera/camera2/ |
ICameraDeviceUser.h | 29 class Surface;
|
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3InputStream.h | 21 #include <gui/Surface.h>
|
Camera3ZslStream.h | 21 #include <gui/Surface.h>
|
/frameworks/base/core/java/android/view/ |
SurfaceHolder.java | 23 * Abstract interface to someone holding a display surface. Allows you to 24 * control the surface size and format, edit the pixels in the surface, and 25 * monitor changes to the surface. This interface is typically available 49 * Exception that is thrown from {@link #lockCanvas} when called on a Surface 63 * changes to the surface. When used with a {@link SurfaceView}, the 64 * Surface being held is only available between calls to 71 * This is called immediately after the surface is first created. 74 * a {@link Surface}, so you should not draw into the Surface her [all...] |
SurfaceControl.java | 23 import android.view.Surface; 27 import android.view.Surface.OutOfResourcesException; 44 private static native void nativeScreenshot(IBinder displayToken, Surface consumer, 80 int mNativeObject; // package visibility only for Surface.java access 88 * Surface creation flag: Surface is created hidden 93 * Surface creation flag: The surface contains secure content, special 94 * measures will be taken to disallow the surface's content to be copied 97 * surface might not be hardware accelerated [all...] |
IWindowSession.aidl | 30 import android.view.Surface; 53 * position should be ignored) and surface of the window. The surface 84 * @param outSurface Object in which is placed the new display surface. 93 out Configuration outConfig, out Surface outSurface); 96 * If a call to relayout() asked to have the surface destroy deferred, 97 * it must call this once it is okay to destroy that surface. 108 * completely transparent, allowing it to work with the surface flinger 140 * Allocate the drag's thumbnail surface. Also assigns a token that identifies 145 int thumbnailWidth, int thumbnailHeight, out Surface outSurface) [all...] |
/frameworks/base/core/java/com/android/internal/view/ |
BaseSurfaceHolder.java | 24 import android.view.Surface; 40 public Surface mSurface = new Surface(); 167 "Surface type is SURFACE_TYPE_PUSH_BUFFERS"); 186 Log.e(TAG, "Exception locking surface", e); 196 // If the Surface is not ready to be drawn, then return null, 219 public Surface getSurface() {
|
/frameworks/base/services/java/com/android/server/display/ |
VirtualDisplayAdapter.java | 28 import android.view.Surface; 52 String name, int width, int height, int densityDpi, Surface surface, int flags) { 56 ownerUid, ownerPackageName, name, width, height, densityDpi, surface, flags); 105 private Surface mSurface; 110 String name, int width, int height, int densityDpi, Surface surface, int flags) { 119 mSurface = surface;
|
LogicalDisplay.java | 22 import android.view.Surface; 210 mBaseDisplayInfo.rotation = Surface.ROTATION_0; 236 * The caller must have an open Surface transaction. 260 int orientation = Surface.ROTATION_0; 274 boolean rotated = (orientation == Surface.ROTATION_90 275 || orientation == Surface.ROTATION_270);
|
/frameworks/native/libs/gui/tests/ |
Surface_test.cpp | 21 #include <gui/Surface.h> 43 String8("Test Surface"), 32, 32, PIXEL_FORMAT_RGBA_8888, 0); 61 sp<Surface> mSurface; 142 sp<Surface> s = new Surface(bq);
|
/development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/ |
NativeMedia.java | 24 import android.view.Surface; 70 // set up the Surface 1 video sink 92 // set up the Surface 2 video sink 175 if ("Surface 1".equals(mSinkString)) { 180 } else if ("Surface 2".equals(mSinkString)) { 333 public static native void setSurface(Surface surface); 341 // VideoSink abstracts out the difference between Surface and SurfaceTexture 364 // Use the newer MediaPlayer.setSurface(Surface) since API level 14 366 // because setSurface also works with a Surface derived from a SurfaceTexture [all...] |
/external/chromium_org/gpu/gles2_conform_support/egl/ |
display.h | 34 class Surface; 57 // Surface routines. 59 bool IsValidSurface(EGLSurface surface); 63 void DestroySurface(EGLSurface surface); 64 void SwapBuffers(EGLSurface surface); 91 // TODO(alokp): Support more than one config, surface, and context. 93 scoped_ptr<Surface> surface_;
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowDisplay.java | 6 import android.view.Surface; 25 private int rotation = Surface.ROTATION_0;
|
/frameworks/base/core/java/android/app/ |
UiAutomation.java | 35 import android.view.Surface; 85 public static final int ROTATION_FREEZE_0 = Surface.ROTATION_0; 88 public static final int ROTATION_FREEZE_90 = Surface.ROTATION_90; 91 public static final int ROTATION_FREEZE_180 = Surface.ROTATION_180; 94 public static final int ROTATION_FREEZE_270 = Surface.ROTATION_270; 650 case Surface.ROTATION_90: { 653 case Surface.ROTATION_180: { 656 case Surface.ROTATION_270: {
|
/frameworks/base/core/java/android/hardware/camera2/ |
CameraDevice.java | 20 import android.view.Surface; 149 * the size of the Surface with 161 * before creating a Surface from the SurfaceTexture with 162 * {@link Surface#Surface}.</li> 177 * obtain the Surface with 186 * a Surface from it.</li> 195 * <p>The camera device will query each Surface's size and formats upon this 245 public void configureOutputs(List<Surface> outputs) throws CameraAccessException; 328 * {@link android.view.Surface surfaces}. The target surfaces for eac [all...] |
/frameworks/base/media/jni/ |
android_media_MediaCodec.h | 35 class Surface; 100 sp<Surface> mSurfaceTextureClient;
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/app/ |
ChildProcessService.java | 17 import android.view.Surface; 198 * Called from native code to share a surface texture with another child process. 203 * @param surfaceObject The Surface or SurfaceTexture to share with the other child process. 216 Surface surface = null; local 218 if (surfaceObject instanceof Surface) { 219 surface = (Surface)surfaceObject; 221 surface = new Surface((SurfaceTexture)surfaceObject) [all...] |
/frameworks/base/core/java/android/hardware/camera2/impl/ |
CameraDevice.java | 36 import android.view.Surface; 68 private final SparseArray<Surface> mConfiguredOutputs = new SparseArray<Surface>(); 162 public void configureOutputs(List<Surface> outputs) throws CameraAccessException { 165 outputs = new ArrayList<Surface>(); 170 HashSet<Surface> addSet = new HashSet<Surface>(outputs); // Streams to create 176 Surface s = mConfiguredOutputs.valueAt(i); 199 for (Surface s : addSet) {
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
CameraOps.java | 35 import android.view.Surface; 71 List<Surface> mOutputSurfaces = new ArrayList<Surface>(2); 72 private Surface mPreviewSurface; 178 private void configureOutputs(List<Surface> outputs) throws CameraAccessException { 238 throw new ApiFailureException("Preview surface is not created"); 241 List<Surface> outputSurfaces = new ArrayList<Surface>(/*capacity*/1); 286 List<Surface> outputSurfaces = new ArrayList<Surface>(/*capacity*/1) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
Surface.java | 16 * This class represents a surface described by knots, weights and control points.
21 public class Surface extends Mesh {
23 private SplineType type; //the type of the surface
25 private List<Float>[] knots; //knots of the surface
32 * Constructor. Constructs required surface.
34 * @param nurbKnots knots of the surface
40 private Surface(List<List<Vector4f>> controlPoints, List<Float>[] nurbKnots,
59 * This method creates a NURBS surface.
61 * @param nurbKnots knots of the surface
66 * @return an instance of NURBS surface
[all...] |
/frameworks/base/services/java/com/android/server/wm/ |
Watermark.java | 30 import android.view.Surface.OutOfResourcesException; 31 import android.view.Surface; 49 private final Surface mSurface = new Surface(); 147 } catch (Surface.OutOfResourcesException e) {
|
/cts/tests/tests/media/src/android/media/cts/ |
DecoderTest.java | 28 import android.view.Surface; 192 codec.configure(format, null /* surface */, null /* crypto */, 0 /* flags */); 199 codec.configure(format, null /* surface */, null /* crypto */, 0 /* flags */); 261 codec.configure(format, null /* surface */, null /* crypto */, 311 Surface s = getActivity().getSurfaceHolder().getSurface(); 320 assertEquals("different number of frames when using Surface", frames1, frames2); 324 Surface s = getActivity().getSurfaceHolder().getSurface(); 333 assertEquals("different number of frames when using Surface", frames1, frames2); 337 Surface s = getActivity().getSurfaceHolder().getSurface(); 346 assertEquals("different number of frames when using Surface", frames1, frames2) [all...] |
/cts/suite/pts/deviceTests/opengl/src/com/android/pts/opengl/reference/ |
GLGameActivity.java | 29 import android.view.Surface; 50 private volatile Surface mSurface = null; 93 Surface surface,
|
/frameworks/av/include/camera/ |
ProCamera.h | 31 #include <gui/Surface.h> 182 const sp<Surface>& surface, 299 sp<Surface> stc;
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/ |
GpuVideoTrackDecoder.java | 25 import android.view.Surface; 70 // Create a surface texture to be used by the video track decoder. 89 Surface surface = new Surface(mSurfaceTexture); local 92 mediaCodec.configure(format, surface, null, 0); 93 surface.release();
|