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

Commit f4083cae authored by Stephen Hines's avatar Stephen Hines Committed by Android Git Automerger
Browse files

am e456d420: Merge "libpixelflinger: do not use anonymous structs"

* commit 'e456d420':
  libpixelflinger: do not use anonymous structs
parents ec51d818 e456d420
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -1877,7 +1877,7 @@ void scanline_perspective(context_t* c)
            struct {
                int32_t s, sq;
                int32_t t, tq;
            };
            } sqtq;
            struct {
                int32_t v, q;
            } st[2];
@@ -1916,10 +1916,10 @@ void scanline_perspective(context_t* c)
        int32_t t =   tmu.shade.it0 +
                     (tmu.shade.idtdy * ys) + (tmu.shade.idtdx * xs) +
                     ((tmu.shade.idtdx + tmu.shade.idtdy)>>1);
        tc[i].s  = s;
        tc[i].t  = t;
        tc[i].sq = gglMulx(s, q0, iwscale);
        tc[i].tq = gglMulx(t, q0, iwscale);
        tc[i].sqtq.s  = s;
        tc[i].sqtq.t  = t;
        tc[i].sqtq.sq = gglMulx(s, q0, iwscale);
        tc[i].sqtq.tq = gglMulx(t, q0, iwscale);
    }

    int32_t span = 0;