Lines Matching full:componentndx
1423 bool checkAreaNumLines (const tcu::ConstPixelBufferAccess& access, const tcu::IVec4& area, int& floodCounter, int componentNdx, const tcu::IVec2& numLines) const;
1424 tcu::IVec2 getNumMinimaMaxima (const tcu::ConstPixelBufferAccess& access, int componentNdx) const;
1425 bool checkLineWidths (const tcu::ConstPixelBufferAccess& access, const tcu::IVec2& begin, const tcu::IVec2& end, int componentNdx, int& floodCounter) const;
1968 bool LineRenderCase::checkAreaNumLines (const tcu::ConstPixelBufferAccess& access, const tcu::IVec4& area, int& messageLimitCounter, int componentNdx, const tcu::IVec2& numLines) const
1972 const tcu::IVec2 numMinimaMaxima = getNumMinimaMaxima(subAccess, componentNdx);
1998 tcu::IVec2 LineRenderCase::getNumMinimaMaxima (const tcu::ConstPixelBufferAccess& access, int componentNdx) const
2010 const int componentValue = access.getPixelInt(x, y)[componentNdx];
2055 bool LineRenderCase::checkLineWidths (const tcu::ConstPixelBufferAccess& access, const tcu::IVec2& begin, const tcu::IVec2& end, int componentNdx, int& messageLimitCounter) const
2070 if (access.getPixelInt(begin.x(), begin.y())[componentNdx] != 0)
2080 else if (access.getPixelInt(cursor.x(), cursor.y())[componentNdx] != 0)
2091 const bool hit = (access.getPixelInt(cursor.x(), cursor.y())[componentNdx] != 0);
2126 else if (access.getPixelInt(cursor.x(), cursor.y())[componentNdx] != 0)
2205 bool verifyWidePointAt (const tcu::IVec2& pointPos, const tcu::Surface& viewport, const GeneratedPoint& refPoint, const tcu::IVec4& bbox, ResultPointType pointType, int componentNdx, int& logFloodCounter);
2206 tcu::IVec2 scanPointWidthAt (const tcu::IVec2& pointPos, const tcu::Surface& viewport, int expectedPointSize, int componentNdx) const;
2804 const int componentNdx = (refPoint.even) ? (1) : (2); // analyze either green or blue channel
2814 if (color.toIVec()[componentNdx] > 0)
2869 const int componentNdx = (refPoint.even) ? (1) : (2);
2887 if (viewport.getPixel(pointPos.x(), pointPos.y()).toIVec()[componentNdx])
2888 return verifyWidePointAt(pointPos, viewport, refPoint, verificationArea, pointType, componentNdx, logFloodCounter);
2904 if (viewport.getPixel(testPos.x(), testPos.y()).toIVec()[componentNdx])
2905 return verifyWidePointAt(testPos, viewport, refPoint, verificationArea, pointType, componentNdx, logFloodCounter);
2927 bool PointRenderCase::verifyWidePointAt (const tcu::IVec2& pointPos, const tcu::Surface& viewport, const GeneratedPoint& refPoint, const tcu::IVec4& bbox, ResultPointType pointType, int componentNdx, int& logFloodCounter)
2954 else if (viewport.getPixel(pointPos.x(), y).toIVec()[componentNdx] == 0)
2960 widthsUpwards.push_back(scanPointWidthAt(tcu::IVec2(pointPos.x(), y), viewport, expectedPointSize, componentNdx));
2991 else if (viewport.getPixel(pointPos.x(), y).toIVec()[componentNdx] == 0)
2997 widthsDownwards.push_back(scanPointWidthAt(tcu::IVec2(pointPos.x(), y), viewport, expectedPointSize, componentNdx));
3052 tcu::IVec2 PointRenderCase::scanPointWidthAt (const tcu::IVec2& pointPos, const tcu::Surface& viewport, int expectedPointSize, int componentNdx) const
3060 if (viewport.getPixel(x, pointPos.y()).toIVec()[componentNdx] == 0)
3071 if (viewport.getPixel(x, pointPos.y()).toIVec()[componentNdx] == 0)
4200 for (int componentNdx = 0; componentNdx < 4; ++componentNdx)
4202 bboxMin[componentNdx] = de::min(bboxMin[componentNdx], m_objectVertices[vertexNdx][componentNdx]);
4203 bboxMax[componentNdx] = de::max(bboxMax[componentNdx], m_objectVertices[vertexNdx][componentNdx]);