Home | History | Annotate | Download | only in libEGL

Lines Matching defs:total

157     // Sorting rule #3: by larger total number of color bits, not considering
177 EGLint total = 0;
179 if (mWantRed) total += config.mRedSize;
180 if (mWantGreen) total += config.mGreenSize;
181 if (mWantBlue) total += config.mBlueSize;
182 if (mWantAlpha) total += config.mAlphaSize;
183 if (mWantLuminance) total += config.mLuminanceSize;
185 return total;
207 // By larger total number of color bits, only considering those that are requested to be > 0.
231 // but the same total.