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

Commit 1afeea0f authored by Mathias Agopian's avatar Mathias Agopian Committed by Android (Google) Code Review
Browse files

Merge "work around a problem where fp registers get corrupted (DO NOT MERGE)" into ics-factoryrom

parents a2a960b4 a5f7b3cb
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -31,16 +31,20 @@ namespace uirenderer {
// Rendering
///////////////////////////////////////////////////////////////////////////////

Rect* gHackDontCorruptRegisters;

void LayerRenderer::prepareDirty(float left, float top, float right, float bottom, bool opaque) {
    LAYER_RENDERER_LOGD("Rendering into layer, fbo = %d", mLayer->getFbo());

    Rect dirty(left, top, right, bottom);
    gHackDontCorruptRegisters = &dirty;

    glBindFramebuffer(GL_FRAMEBUFFER, mLayer->getFbo());

    const float width = mLayer->layer.getWidth();
    const float height = mLayer->layer.getHeight();

#if RENDER_LAYERS_AS_REGIONS
    Rect dirty(left, top, right, bottom);
    if (dirty.isEmpty() || (dirty.left <= 0 && dirty.top <= 0 &&
            dirty.right >= width && dirty.bottom >= height)) {
        mLayer->region.clear();