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

Commit 4dc450ed authored by Lucas Dupin's avatar Lucas Dupin Committed by Automerger Merge Worker
Browse files

Merge "Remove unused method" into rvc-dev am: 85aff0a3

Change-Id: I322ba59fdb7e0c5930153ccad851b485328340f3
parents df27c909 85aff0a3
Loading
Loading
Loading
Loading
+0 −9
Original line number Original line Diff line number Diff line
@@ -261,15 +261,6 @@ string BlurFilter::getMixFragShader() const {
    return shader;
    return shader;
}
}


void BlurFilter::blit(GLFramebuffer& read, GLFramebuffer& draw) const {
    ATRACE_NAME("BlurFilter::blit");
    read.bindAsReadBuffer();
    draw.bindAsDrawBuffer();
    glBlitFramebuffer(0, 0, read.getBufferWidth(), read.getBufferHeight(), 0, 0,
                      draw.getBufferWidth(), draw.getBufferHeight(), GL_COLOR_BUFFER_BIT,
                      GL_LINEAR);
}

} // namespace gl
} // namespace gl
} // namespace renderengine
} // namespace renderengine
} // namespace android
} // namespace android
+0 −1
Original line number Original line Diff line number Diff line
@@ -56,7 +56,6 @@ public:
private:
private:
    uint32_t mRadius;
    uint32_t mRadius;
    void drawMesh(GLuint uv, GLuint position);
    void drawMesh(GLuint uv, GLuint position);
    void blit(GLFramebuffer& read, GLFramebuffer& draw) const;
    string getVertexShader() const;
    string getVertexShader() const;
    string getFragmentShader() const;
    string getFragmentShader() const;
    string getMixFragShader() const;
    string getMixFragShader() const;