HomeSort by relevance Sort by last modified time
    Searched refs:Surface (Results 1 - 25 of 757) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/framework/common/
tcuSurface.cpp 21 * \brief Surface class.
28 Surface::Surface (void)
34 Surface::Surface(int width, int height)
41 Surface::~Surface()
46 * \brief Resize surface.
52 void Surface::setSize (int width, int height)
tcuSurface.hpp 23 * \brief RGBA8888 surface class.
36 * \brief RGBA8888 surface
38 * Surface provides basic pixel storage functionality. Only single format
44 class Surface
47 Surface (void);
48 Surface (int width, int height);
49 ~Surface (void);
70 inline void Surface::setPixel (int x, int y, RGBA col)
87 inline RGBA Surface::getPixel (int x, int y) const
104 /** Get pixel buffer access from surface. *
    [all...]
  /frameworks/native/aidl/gui/android/view/
Surface.aidl 1 /* //device/java/android/android/view/Surface.aidl
20 parcelable Surface cpp_header "gui/Surface.h";
  /cts/tests/tests/view/src/android/view/cts/
Surface_OutOfResourcesExceptionTest.java 20 import android.view.Surface;
21 import android.view.Surface.OutOfResourcesException;
27 new Surface.OutOfResourcesException();
28 new Surface.OutOfResourcesException(NAME);
  /packages/apps/Camera2/src/com/android/camera/burst/
SurfaceTextureContainer.java 20 import android.view.Surface;
26 * {@link Surface} instance together.
30 private final Surface mSurface;
34 mSurface = new Surface(mSurfaceTexture);
41 public Surface getSurface() {
  /packages/apps/Camera2/src/com/android/camera/one/v2/common/
SimpleCaptureStream.java 19 import android.view.Surface;
25 * A {@link CaptureStream} which just registers a {@link Surface} without
29 private final Surface mSurface;
31 public SimpleCaptureStream(Surface surface) {
32 mSurface = surface;
36 public Surface bind(BufferQueue<Long> timestamps) throws InterruptedException {
  /external/icu/icu4c/source/samples/layout/
Surface.h 5 class Surface
8 Surface(/*what?*/);
  /frameworks/base/libs/hwui/
Readback.h 22 #include <gui/Surface.h>
40 Surface& surface, SkBitmap* bitmap);
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
CaptureStream.java 19 import android.view.Surface;
24 * A generic Surface-holding object which can be attached to a {@link Request},
26 * provide a {@link Surface} on which to send frames from the camera. However,
27 * other implementations may wish to filter images sent to the {@link Surface}
32 * Implementations must provide a {@link Surface} and (optionally) implement
33 * logic to filter images added to the surface according to a stream of image
39 * of image timestamps as well as the images added to the {@link Surface}, and
50 * images which correspond to the request to which the surface
60 public Surface bind(BufferQueue<Long> timestamps)
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
TargetSubPane.java 21 import android.view.Surface;
36 * @param orientation current UI orientation in degrees, one of the Surface.ROTATION_* values
40 public abstract Surface getOutputSurface();
  /frameworks/base/core/java/android/hardware/display/
VirtualDisplay.java 19 import android.view.Surface;
23 * {@link android.view.Surface} that you must provide to {@link DisplayManager#createVirtualDisplay
26 * Because a virtual display renders to a surface provided by the application, it will be
38 private Surface mSurface;
41 IVirtualDisplayCallback token, Surface surface) {
45 mSurface = surface;
56 * Gets the surface that backs the virtual display.
58 public Surface getSurface() {
63 * Sets the surface that backs the virtual display
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/
IProjectionService.aidl 20 import android.view.Surface;
25 void startRendering(in Surface surface, int width, int height, int density, int viewType);
  /frameworks/base/media/java/android/media/tv/
ITvInputHardware.aidl 21 import android.view.Surface;
32 * Make the input render on the surface according to the config. In case of HDMI, this will
35 boolean setSurface(in Surface surface, in TvStreamConfig config);
  /frameworks/base/core/java/android/hardware/camera2/utils/
SurfaceUtils.java 25 import android.view.Surface;
33 * Various Surface utilities.
38 * Check if a surface is for preview consumer based on consumer end point Gralloc usage flags.
40 * @param surface The surface to be checked.
41 * @return true if the surface is for preview consumer, false otherwise.
43 public static boolean isSurfaceForPreview(Surface surface) {
44 return LegacyCameraDevice.isPreviewConsumer(surface);
48 * Check if the surface is for hardware video encoder consumer based on consumer end poin
    [all...]
  /packages/apps/Camera2/src/com/android/camera/captureintent/resource/
ResourceSurfaceTexture.java 22 import android.view.Surface;
33 * Creates a surface from this surface texture for preview.
35 * @return A {@link android.view.Surface} object.
37 public Surface createPreviewSurface();
  /external/deqp/modules/gles3/functional/
es3fFboTestCase.hpp 32 class Surface;
53 virtual void render (tcu::Surface& dst) = DE_NULL;
54 virtual bool compare (const tcu::Surface& reference, const tcu::Surface& result);
59 void readPixels (tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias);
60 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
  /external/deqp/modules/gles31/functional/
es31fFboTestCase.hpp 32 class Surface;
53 virtual void render (tcu::Surface& dst) = DE_NULL;
54 virtual bool compare (const tcu::Surface& reference, const tcu::Surface& result);
59 void readPixels (tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias);
60 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IVideoProvider.aidl 20 import android.view.Surface;
35 void setPreviewSurface(in Surface surface);
37 void setDisplaySurface(in Surface surface);
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsVideoCallProvider.aidl 20 import android.view.Surface;
48 void setPreviewSurface(in Surface surface);
50 void setDisplaySurface(in Surface surface);
  /cts/tests/camera/src/android/hardware/camera2/cts/
NativeCameraDeviceTest.java 22 import android.view.Surface;
49 // Init preview surface to a guaranteed working size
56 // Init preview surface to a guaranteed working size
64 private static native boolean testCameraDeviceSessionOpenAndCloseNative(Surface preview);
65 private static native boolean testCameraDeviceSimplePreviewNative(Surface preview);
  /frameworks/native/libs/gui/tests/
SurfaceTextureGL.h 26 #include <gui/Surface.h>
44 mSTC = new Surface(producer);
66 sp<Surface> mSTC;
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreateWindowSurface.java 25 Surface sur = null;
32 } else if (win instanceof Surface) {
33 sur = (Surface) win;
36 EGLSurface surface; local
38 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset);
40 surface = _eglCreateWindowSurfaceTexture(dpy, config,
45 "Surface, SurfaceView, SurfaceTexture or SurfaceHolder at the moment, " +
49 return surface;
  /packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
CaptureRequestBuilderProxy.java 20 import android.view.Surface;
36 public void addTarget(Surface outputTarget) {
57 public void removeTarget(Surface outputTarget) {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GLEnvironment.java 24 import android.view.Surface;
102 public int registerSurface(Surface surface) {
103 int result = nativeAddSurface(surface);
105 throw new RuntimeException("Error registering surface " + surface + "!");
111 Surface surface = new Surface(surfaceTexture); local
112 int result = nativeAddSurfaceWidthHeight(surface, width, height)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
PreviewStarter.java 19 import android.view.Surface;
32 * When the preview surface is available, creates a capture session, and then
37 public void onCameraCaptureSessionCreated(CameraCaptureSessionProxy session, Surface
41 private final List<Surface> mOutputSurfaces;
47 * surface) to use.
52 public PreviewStarter(List<Surface> outputSurfaces,
63 * @param surface The preview surface to use.
65 public ListenableFuture<Void> startPreview(final Surface surface) {
    [all...]

Completed in 1306 milliseconds

1 2 3 4 5 6 7 8 91011>>