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

/frameworks/native/include/gui/
H A DSurfaceTexture.h42 class SurfaceTexture : public virtual RefBase, class in namespace:android
57 // SurfaceTexture constructs a new SurfaceTexture object. tex indicates the
67 // For legacy reasons, the SurfaceTexture is created in a state where it is
75 // A SurfaceTexture may be detached from one OpenGL ES context and then
78 // purely to allow a SurfaceTexture to be transferred from one consumer
81 SurfaceTexture(GLuint tex, bool allowSynchronousMode = true,
85 virtual ~SurfaceTexture();
110 // a SurfaceTexture to apply this transform we avoid performing an extra
132 // as the GraphicBuffers dequeued from this SurfaceTexture ar
[all...]
/frameworks/native/libs/gui/
H A DSurfaceTexture.cpp17 #define LOG_TAG "SurfaceTexture"
34 #include <gui/SurfaceTexture.h>
42 // This compile option makes SurfaceTexture use the EGL_KHR_fence_sync extension
52 // Macros for including the SurfaceTexture name in log messages
107 SurfaceTexture::SurfaceTexture(GLuint tex, bool allowSynchronousMode, function in class:android::SurfaceTexture
127 ST_LOGV("SurfaceTexture");
150 ST_LOGE("SurfaceTexture: error connecting to BufferQueue: %s (%d)",
158 SurfaceTexture::~SurfaceTexture() {
[all...]
/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...]

Completed in 120 milliseconds