Lines Matching full:greenbits
1738 " highp int greenBits = (selectedBits >> 5) & 63;\n"
1741 " fragColor = vec4(float(redBits) / float(31), float(greenBits) / float(63), float(blueBits) / float(31), 1.0);\n"
1801 int greenBits = (int)deFloatRound((float)lowColor.getGreen() / 255.0f * 63);
1804 low = (deUint16)(redBits | (greenBits << 5) | (blueBits << 11));
1808 int greenBits = (int)deFloatRound((float)highColor.getGreen() / 255.0f * 63);
1811 high = (deUint16)(redBits | (greenBits << 5) | (blueBits << 11));