Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3edab5a4 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Code Review
Browse files

Merge "stubs"

parents 0db20b9d 58c40337
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -20,10 +20,14 @@
namespace android {
namespace android {


struct SurfaceTexture {
struct SurfaceTexture {
    struct FrameAvailableListener : public virtual RefBase {};

    SurfaceTexture(GLuint) {}
    SurfaceTexture(GLuint) {}
    void updateTexImage() {}
    void updateTexImage() {}
    void decStrong(android::sp<android::SurfaceTexture>* const) {}
    void decStrong(android::sp<android::SurfaceTexture>* const) {}
    void incStrong(android::sp<android::SurfaceTexture>* const) {}
    void incStrong(android::sp<android::SurfaceTexture>* const) {}
    void getTransformMatrix(float mtx[16]) {}
    void setFrameAvailableListener(const sp<FrameAvailableListener>&) {}
};
};


}
}