Searched defs:SurfaceTexture (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DSurfaceTexture.java28 * <p>The image stream may come from either camera preview or video decode. A SurfaceTexture
32 * SurfaceTexture object rather than to the device's display. When {@link #updateTexImage} is
33 * called, the contents of the texture object specified when the SurfaceTexture was created are
58 * <p>SurfaceTexture objects may be created on any thread. {@link #updateTexImage} may only be
63 public class SurfaceTexture { class
77 void onFrameAvailable(SurfaceTexture surfaceTexture);
92 * Construct a new SurfaceTexture to stream images to a given OpenGL texture.
96 public SurfaceTexture(int texName) { method in class:SurfaceTexture
101 * Construct a new SurfaceTexture to stream images to a given OpenGL texture.
104 * @param allowSynchronousMode whether the SurfaceTexture ca
111 public SurfaceTexture(int texName, boolean allowSynchronousMode) { method in class:SurfaceTexture
[all...]
/frameworks/base/include/gui/
H A DSurfaceTexture.h41 class SurfaceTexture : public BnSurfaceTexture { class in namespace:android
63 // SurfaceTexture constructs a new SurfaceTexture object. tex indicates the
65 // texture name cannot be changed once the SurfaceTexture is created.
71 SurfaceTexture(GLuint tex, bool allowSynchronousMode = true,
74 virtual ~SurfaceTexture();
78 // SurfaceTexture object (i.e. they are not owned by the client).
95 // queueBuffer returns a filled buffer to the SurfaceTexture. In addition, a
116 // connect attempts to connect a client API to the SurfaceTexture. This
121 // SurfaceTexture an
[all...]
/frameworks/base/libs/gui/
H A DSurfaceTexture.cpp17 #define LOG_TAG "SurfaceTexture"
28 #include <gui/SurfaceTexture.h>
39 // This compile option causes SurfaceTexture to return the buffer that is currently
52 // This compile option makes SurfaceTexture use the EGL_KHR_fence_sync extension
62 // Macros for including the SurfaceTexture name in log messages
117 SurfaceTexture::SurfaceTexture(GLuint tex, bool allowSynchronousMode, function in class:android::SurfaceTexture
145 ST_LOGV("SurfaceTexture");
153 SurfaceTexture::~SurfaceTexture() {
[all...]

Completed in 256 milliseconds