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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/view/
Surface.aidl 1 /* //device/java/android/android/view/Surface.aidl
20 parcelable Surface;
Surface.java 32 public class Surface implements Parcelable {
33 private static final String TAG = "Surface";
49 public static final Parcelable.Creator<Surface> CREATOR =
50 new Parcelable.Creator<Surface>() {
52 public Surface createFromParcel(Parcel source) {
54 Surface s = new Surface();
58 Log.e(TAG, "Exception creating surface from parcel", e);
64 public Surface[] newArray(int size) {
65 return new Surface[size]
    [all...]
  /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);
  /frameworks/av/include/media/stagefright/
NativeWindowWrapper.h 21 #include <gui/Surface.h>
25 // Surface derives from ANativeWindow which derives from multiple
31 const sp<Surface> &surfaceTextureClient) :
38 sp<Surface> getSurfaceTextureClient() const {
43 const sp<Surface> mSurfaceTextureClient;
  /external/icu4c/samples/layout/
Surface.h 5 class Surface
8 Surface(/*what?*/);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
Surface.h 44 class Surface : public TilePainter {
46 Surface();
47 virtual ~Surface();
49 bool tryUpdateSurface(Surface* oldSurface);
97 LayerMergeState(Vector<Surface*>* const allGroups)
105 Vector<Surface*>* const surfaceList;
108 Surface* currentSurface;
Surface.cpp 26 #define LOG_TAG "Surface"
30 #include "Surface.h"
52 Surface::Surface()
58 ClassTracker::instance()->increment("Surface");
62 Surface::~Surface()
69 ClassTracker::instance()->decrement("Surface");
73 bool Surface::tryUpdateSurface(Surface* oldSurface
    [all...]
SurfaceCollection.h 41 class Surface;
77 WTF::Vector<Surface*> m_surfaces;
  /frameworks/av/libvideoeditor/lvpp/
PreviewRenderer.h 29 class Surface;
35 const sp<Surface> &surface,
50 const sp<Surface> &surface,
55 sp<Surface> mSurface;
VideoEditorPreviewController.h 28 struct Surface;
41 M4OSA_ERR setSurface(const sp<Surface>& surface);
51 const sp<Surface>& surface,
56 const sp<Surface>& surface,
86 sp<Surface> mSurface;
  /frameworks/base/include/android_runtime/
android_view_Surface.h 26 class Surface;
29 /* Gets the underlying ANativeWindow for a Surface. */
33 /* Returns true if the object is an instance of Surface. */
36 /* Gets the underlying Surface from a Surface Java object. */
37 extern sp<Surface> android_view_Surface_getSurface(JNIEnv* env, jobject surfaceObj);
39 /* Creates a Surface from an IGraphicBufferProducer. */
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
CanvasTexture.h 38 class Surface;
56 android::Surface* nativeWindow();
85 sp<android::Surface> m_ANW;
  /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;
  /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...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
Surface.h 7 // Surface.h: Defines the egl::Surface class, representing a drawing surface
25 class Surface
28 Surface(Display *display, const egl::Config *config, HWND window);
30 ~Surface();
48 DISALLOW_COPY_AND_ASSIGN(Surface);
70 const HWND mWindow; // Window that the surface is created for.
72 const egl::Config *mConfig; // EGL config surface was created with
73 EGLint mHeight; // Height of surface
    [all...]
Surface.cpp 7 // Surface.cpp: Implements the egl::Surface class, representing a drawing surface
13 #include "libEGL/Surface.h"
22 Surface::Surface(Display *display, const Config *config, HWND window)
42 Surface::~Surface()
48 void Surface::release()
87 void Surface::resetSwapChain(
    [all...]
Display.h 25 #include "libEGL/Surface.h"
45 egl::Surface *createWindowSurface(HWND window, EGLConfig config);
48 void destroySurface(egl::Surface *surface);
54 bool isValidSurface(egl::Surface *surface);
92 typedef std::set<Surface*> SurfaceSet;
  /frameworks/av/services/camera/libcameraservice/camera3/
Camera3StreamBufferListener.h 20 #include <gui/Surface.h>
  /frameworks/native/libs/gui/
Surface.cpp 17 #define LOG_TAG "Surface"
33 #include <gui/Surface.h>
39 Surface::Surface(
76 Surface::~Surface() {
78 Surface::disconnect(NATIVE_WINDOW_API_CPU);
82 sp<IGraphicBufferProducer> Surface::getIGraphicBufferProducer() const {
86 int Surface::hook_setSwapInterval(ANativeWindow* window, int interval) {
87 Surface* c = getSelf(window)
    [all...]
  /frameworks/base/core/jni/
android_view_Surface.cpp 17 #define LOG_TAG "Surface"
32 #include <gui/Surface.h>
53 "android/view/Surface$OutOfResourcesException";
92 sp<Surface> android_view_Surface_getSurface(JNIEnv* env, jobject surfaceObj) {
93 sp<Surface> sur;
97 sur = reinterpret_cast<Surface *>(
110 sp<Surface> surface(new Surface(bufferProducer));
111 if (surface == NULL)
    [all...]
  /frameworks/native/include/gui/
Surface.h 44 * Surface. Surface then forwards the buffers through Binder IPC
48 class Surface
49 : public ANativeObjectBase<ANativeWindow, Surface, RefBase>
54 * creates a Surface from the given IGraphicBufferProducer (which concrete
57 * Surface is mainly state-less while it's disconnected, it can be
61 * However, once a Surface is connected, it'll prevent other Surfaces
65 Surface(const sp<IGraphicBufferProducer>& bufferProducer);
68 * Surface was created with. Usually it's an error to use the
69 * IGraphicBufferProducer while the Surface is connected
    [all...]
SurfaceControl.h 37 class Surface;
45 static bool isValid(const sp<SurfaceControl>& surface) {
46 return (surface != 0) && surface->isValid();
56 // release surface data from java
74 sp<Surface> getSurface() const;
82 friend class Surface;
98 mutable sp<Surface> mSurfaceData;
  /cts/tests/tests/nativeopengl/src/com/android/opengl/cts/
GLTestActivity.java 26 import android.view.Surface;
56 private static native void setSurface(Surface surface);
  /frameworks/wilhelm/tests/sandbox/
nativewindow.cpp 23 #include <gui/Surface.h>
39 sp<Surface> gSurface;
54 String8("A Surface"),
68 sp<Surface> surface = control->getSurface(); local
69 CHECK(surface != NULL);
71 gSurface = surface;
75 return surface.get();
  /frameworks/base/services/java/com/android/server/display/
DisplayDevice.java 21 import android.view.Surface;
44 // The display device owns its surface, but it should only set it
46 private Surface mCurrentSurface;
63 * Gets the Surface Flinger display token for this display.
66 * by Surface Flinger.
165 * Sets the display surface while in a transaction.
167 public final void setSurfaceInTransactionLocked(Surface surface) {
168 if (mCurrentSurface != surface) {
169 mCurrentSurface = surface;
    [all...]

Completed in 785 milliseconds

1 2 3 4 5 6 7 8 91011>>