/external/chromium_org/gpu/gles2_conform_support/egl/ |
surface.cc | 5 #include "gpu/gles2_conform_support/egl/surface.h" 9 Surface::Surface(EGLNativeWindowType win) : window_(win) { 12 Surface::~Surface() {
|
surface.h | 14 class Surface { 16 explicit Surface(EGLNativeWindowType win); 17 ~Surface(); 24 DISALLOW_COPY_AND_ASSIGN(Surface);
|
/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?*/);
|
/frameworks/av/include/camera/camera2/ |
CaptureRequest.h | 26 class Surface; 32 Vector<sp<Surface> > mSurfaceList;
|
/external/chromium_org/third_party/angle/src/libEGL/ |
Surface.cpp | 7 // Surface.cpp: Implements the egl::Surface class, representing a drawing surface 15 #include "libEGL/Surface.h" 28 Surface::Surface(Display *display, const Config *config, HWND window, EGLint postSubBufferSupported) 49 Surface::Surface(Display *display, const Config *config, HANDLE shareHandle, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureType) 66 Surface::~Surface() [all...] |
Display.h | 28 class Surface; 47 void destroySurface(egl::Surface *surface); 53 bool isValidSurface(egl::Surface *surface); 77 typedef std::set<Surface*> SurfaceSet;
|
Surface.h | 7 // Surface.h: Defines the egl::Surface class, representing a drawing surface 34 class Surface 37 Surface(Display *display, const egl::Config *config, HWND window, EGLint postSubBufferSupported); 38 Surface(Display *display, const egl::Config *config, HANDLE shareHandle, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureTarget); 40 ~Surface(); 68 DISALLOW_COPY_AND_ASSIGN(Surface); 82 const HWND mWindow; // Window that the surface is created for. 84 const egl::Config *mConfig; // EGL config surface was created wit [all...] |
/frameworks/av/libvideoeditor/lvpp/ |
PreviewRenderer.h | 29 class Surface; 35 const sp<Surface> &surface, 50 const sp<Surface> &surface, 55 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. */
|
/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/chromium_org/third_party/angle/src/libGLESv2/ |
main.h | 18 class Surface; 31 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface); 59 void glMakeCurrent(gl::Context *context, egl::Display *display, egl::Surface *surface); 65 bool __stdcall glBindTexImage(egl::Surface *surface);
|
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3StreamBufferListener.h | 20 #include <gui/Surface.h>
|
/frameworks/base/core/java/android/hardware/camera2/ |
ICameraDeviceUser.aidl | 19 import android.view.Surface; 41 int createStream(int width, int height, int format, in Surface surface);
|
/frameworks/native/libs/gui/ |
Surface.cpp | 17 #define LOG_TAG "Surface" 33 #include <gui/Surface.h> 39 Surface::Surface( 79 Surface::~Surface() { 81 Surface::disconnect(NATIVE_WINDOW_API_CPU); 85 sp<IGraphicBufferProducer> Surface::getIGraphicBufferProducer() const { 89 int Surface::hook_setSwapInterval(ANativeWindow* window, int interval) { 90 Surface* c = getSelf(window) [all...] |
/frameworks/base/core/jni/ |
android_view_Surface.cpp | 17 #define LOG_TAG "Surface" 33 #include <gui/Surface.h> 55 "android/view/Surface$OutOfResourcesException"; 94 sp<Surface> android_view_Surface_getSurface(JNIEnv* env, jobject surfaceObj) { 95 sp<Surface> sur; 99 sur = reinterpret_cast<Surface *>( 112 sp<Surface> surface(new Surface(bufferProducer, true)); 113 if (surface == NULL) [all...] |
/frameworks/native/include/gui/ |
Surface.h | 43 * Surface. Surface then forwards the buffers through Binder IPC 47 class Surface 48 : public ANativeObjectBase<ANativeWindow, Surface, RefBase> 53 * creates a Surface from the given IGraphicBufferProducer (which concrete 56 * Surface is mainly state-less while it's disconnected, it can be 60 * However, once a Surface is connected, it'll prevent other Surfaces 64 * the controlledByApp flag indicates that this Surface (producer) is 67 Surface(const sp<IGraphicBufferProducer>& bufferProducer, bool controlledByApp = false); 70 * Surface was created with. Usually it's an error to use th [all...] |
/cts/tests/tests/nativeopengl/src/com/android/opengl/cts/ |
GLTestActivity.java | 26 import android.view.Surface; 56 private static native void setSurface(Surface surface);
|
/cts/tests/tests/media/src/android/media/cts/ |
CompositionTextureView.java | 26 import android.view.Surface; 36 private Surface mSurface; 122 mSurface = new Surface(surfaceTexture); 125 public Surface getSurface() {
|
/frameworks/av/camera/camera2/ |
CaptureRequest.cpp | 25 #include <gui/Surface.h> 48 ALOGE("%s: Failed to read surface list size from parcel", __FUNCTION__); 51 ALOGV("%s: Read surface list size = %d", __FUNCTION__, size); 58 ALOGV("%s: Read surface class = %s", __FUNCTION__, 65 // Surface.writeToParcel 67 ALOGV("%s: Read surface name = %s", 70 ALOGV("%s: Read surface binder = %p", 73 sp<Surface> surface; local 78 surface = new Surface(gbp) 105 sp<Surface> surface = mSurfaceList[i]; local [all...] |
/frameworks/base/core/java/android/hardware/display/ |
IDisplayManager.aidl | 23 import android.view.Surface; 63 String name, int width, int height, int densityDpi, in Surface surface, int flags);
|