diff options
| author | Stephen Hines <srhines@google.com> | 2013-11-26 08:38:36 -0800 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2013-11-26 08:38:36 -0800 |
| commit | f4083caec07ba6569865de40904e6776d2db3cfa (patch) | |
| tree | 5b1c253333fe484bdd22f575eec8dded2a340e57 | |
| parent | ec51d818c5ce8fa6985ed9779a44647cfb040f8a (diff) | |
| parent | e456d420a5bdd1085f587a7906b58aabcb43f220 (diff) | |
| download | system_core-f4083caec07ba6569865de40904e6776d2db3cfa.zip system_core-f4083caec07ba6569865de40904e6776d2db3cfa.tar.gz system_core-f4083caec07ba6569865de40904e6776d2db3cfa.tar.bz2 | |
am e456d420: Merge "libpixelflinger: do not use anonymous structs"
* commit 'e456d420a5bdd1085f587a7906b58aabcb43f220':
libpixelflinger: do not use anonymous structs
| -rw-r--r-- | libpixelflinger/scanline.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libpixelflinger/scanline.cpp b/libpixelflinger/scanline.cpp index a5d28b2..9663a2b 100644 --- a/libpixelflinger/scanline.cpp +++ b/libpixelflinger/scanline.cpp @@ -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; |
