Home
last modified time | relevance | path

Searched refs:channelChoices (Results 1 – 2 of 2) sorted by relevance

/third_party/vk-gl-cts/modules/gles3/functional/
Des3fDitheringTests.cpp181 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()
[all …]
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fDitheringTests.cpp181 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()
190 channelChoices.push_back((int)deFloatCeil(scaledInput) - 2); in checkColor()
192 channelChoices.push_back((int)deFloatCeil(scaledInput) + 1); in checkColor()
195 std::sort(channelChoices.begin(), channelChoices.end()); in checkColor()
201 for (int i = 0; i < (int)channelChoices.size(); i++) in checkColor()
203 if (renderedClrInFormat == channelChoices[i]) in checkColor()
216 << ", should be " << choiceListStr(channelChoices) in checkColor()