Lines Matching defs:region
113 * \brief Check if a region in an image is unicolored.
124 bool insideEncountered = false; //!< Whether we have already seen at least one pixel inside the region.
125 tcu::RGBA insideColor; //!< Color of the first pixel inside the region.
136 if (!tcu::compareThreshold(pixColor, insideColor, tcu::RGBA(3, 3, 3, 3))) // Pixel color differs from already-detected color inside same region - region not unicolored.
879 // By "interior" we here mean the region of non-boundary pixels of the rendered quad for which we can safely assume
1000 const QuadCorners& region = unicoloredRegions[i];
1001 IVec2 p0Win = ((region.p0+1.0f) * 0.5f * (float)(m_viewportSize-1) + 0.5f).asInt();
1002 IVec2 p1Win = ((region.p1+1.0f) * 0.5f * (float)(m_viewportSize-1) + 0.5f).asInt();
1003 IVec2 p2Win = ((region.p2+1.0f) * 0.5f * (float)(m_viewportSize-1) + 0.5f).asInt();
1004 IVec2 p3Win = ((region.p3+1.0f) * 0.5f * (float)(m_viewportSize-1) + 0.5f).asInt();