Home | History | Annotate | Download | only in filters

Lines Matching refs:topRight

92 inline void FELighting::LightingData::topRight(int offset, IntPoint& normalVector)
109 int topRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
113 normalVector.setX(-top + topRight - (center << 1) + (right << 1) - bottom + bottomRight);
114 normalVector.setY(-(top << 1) - topRight + (bottom << 1) + bottomRight);
124 int topRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
129 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1) - bottomLeft + bottomRight);
130 normalVector.setY(-topLeft - (top << 1) - topRight + bottomLeft + (bottom << 1) + bottomRight);
153 int topRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
154 normalVector.setX(-top + topRight - (center << 1) + (right << 1));
155 normalVector.setY(-(top << 1) - topRight + (center << 1) + right);
166 int topRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
167 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1));
168 normalVector.setY(-topLeft - (top << 1) - topRight + left + (center << 1) + right);
266 data.topRight(offset, normalVector);