diff --git a/include/gui/SurfaceTexture.h b/include/gui/SurfaceTexture.h index 726b57c1e..54ce78994 100644 --- a/include/gui/SurfaceTexture.h +++ b/include/gui/SurfaceTexture.h @@ -20,10 +20,14 @@ namespace android { struct SurfaceTexture { + struct FrameAvailableListener : public virtual RefBase {}; + SurfaceTexture(GLuint) {} void updateTexImage() {} void decStrong(android::sp* const) {} void incStrong(android::sp* const) {} + void getTransformMatrix(float mtx[16]) {} + void setFrameAvailableListener(const sp&) {} }; }