Lines Matching refs:channelChoices
181 vector<int> channelChoices; in checkColor() local
183 channelChoices.push_back(de::min(channelMax, (int)deFloatCeil(scaledInput))); in checkColor()
184 channelChoices.push_back(de::max(0, (int)deFloatCeil(scaledInput) - 1)); in checkColor()
188 channelChoices.push_back(de::max(0,(int)deFloatCeil(scaledInput) - 2)); in checkColor()
189 channelChoices.push_back(de::max(0,(int)deFloatCeil(scaledInput) + 1)); in checkColor()
196 channelChoices.push_back((int)deFloatCeil(scaledInput) - 2); in checkColor()
198 channelChoices.push_back((int)deFloatCeil(scaledInput) + 1); in checkColor()
201 std::sort(channelChoices.begin(), channelChoices.end()); in checkColor()
207 for (int i = 0; i < (int)channelChoices.size(); i++) in checkColor()
209 if (renderedClrInFormat == channelChoices[i]) in checkColor()
222 << ", should be " << choiceListStr(channelChoices) in checkColor()