Searched defs:Surface (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/include/gui/
H A DSurface.h45 * Surface. Surface then forwards the buffers through Binder IPC
49 class Surface class in namespace:android
50 : public ANativeObjectBase<ANativeWindow, Surface, RefBase>
55 * creates a Surface from the given IGraphicBufferProducer (which concrete
58 * Surface is mainly state-less while it's disconnected, it can be
62 * However, once a Surface is connected, it'll prevent other Surfaces
66 * the controlledByApp flag indicates that this Surface (producer) is
69 Surface(const sp<IGraphicBufferProducer>& bufferProducer, bool controlledByApp = false);
72 * Surface wa
380 class Surface : public Parcelable { class in namespace:android::view
[all...]
/frameworks/base/core/java/android/view/
H A DSurface.java37 public class Surface implements Parcelable { class in inherits:Parcelable
38 private static final String TAG = "Surface";
62 public static final Parcelable.Creator<Surface> CREATOR =
63 new Parcelable.Creator<Surface>() {
65 public Surface createFromParcel(Parcel source) {
67 Surface s = new Surface();
77 public Surface[] newArray(int size) {
78 return new Surface[size];
142 public Surface() { method in class:Surface
156 public Surface(SurfaceTexture surfaceTexture) { method in class:Surface
168 private Surface(long nativeObject) { method in class:Surface
[all...]
/frameworks/native/vulkan/libvulkan/
H A Dswapchain.cpp110 struct Surface { struct in namespace:vulkan::driver::__anon1604
115 VkSurfaceKHR HandleFromSurface(Surface* surface) {
119 Surface* SurfaceFromHandle(VkSurfaceKHR handle) {
120 return reinterpret_cast<Surface*>(handle);
124 Swapchain(Surface& surface_, uint32_t num_images_)
127 Surface& surface;
220 void* mem = allocator->pfnAllocation(allocator->pUserData, sizeof(Surface),
221 alignof(Surface),
225 Surface* surface = new (mem) Surface;
[all...]
/frameworks/native/libs/gui/
H A DSurface.cpp17 #define LOG_TAG "Surface"
36 #include <gui/Surface.h>
42 Surface::Surface( function in class:android::Surface
89 Surface::~Surface() {
91 Surface::disconnect(NATIVE_WINDOW_API_CPU);
95 sp<IGraphicBufferProducer> Surface::getIGraphicBufferProducer() const {
99 void Surface::setSidebandStream(const sp<NativeHandle>& stream) {
103 void Surface
[all...]

Completed in 86 milliseconds