Lines Matching refs:isVerticallyIncreasing
110 bool drawAndCheckGradient (bool isVerticallyIncreasing, const tcu::Vec4& highColor) const;
239 bool DitheringCase::drawAndCheckGradient (const bool isVerticallyIncreasing, const Vec4& highColor)… in drawAndCheckGradient() argument
263 …log << TestLog::Message << "Drawing a " << (isVerticallyIncreasing ? "vertically" : "horizontally"… in drawAndCheckGradient()
266 quad.color[1] = isVerticallyIncreasing ? quadClr1 : quadClr0; in drawAndCheckGradient()
267 quad.color[2] = isVerticallyIncreasing ? quadClr0 : quadClr1; in drawAndCheckGradient()
275 log << TestLog::Image(isVerticallyIncreasing ? "VerGradient" : "HorGradient", in drawAndCheckGradient()
276 isVerticallyIncreasing ? "Vertical gradient" : "Horizontal gradient", in drawAndCheckGradient()
289 …const float inputF = ((float)(isVerticallyIncreasing ? y : x) + 0.5f) / (float)(isVerticallyIncr… in drawAndCheckGradient()
318 …const int increasingDirectionSize = isVerticallyIncreasing ? renderedImg.getHeight() : renderedImg… in drawAndCheckGradient()
319 …const int constantDirectionSize = isVerticallyIncreasing ? renderedImg.getWidth() : renderedImg.ge… in drawAndCheckGradient()
327 const int x = isVerticallyIncreasing ? constPos : incrPos; in drawAndCheckGradient()
328 const int y = isVerticallyIncreasing ? incrPos : constPos; in drawAndCheckGradient()
336 << "Failure: colors should be constant per " << (isVerticallyIncreasing ? "row" : "column") in drawAndCheckGradient()
338 … " and does not equal the color at (" << (isVerticallyIncreasing ? x-1 : x) << ", " << (isVertical… in drawAndCheckGradient()