Home | History | Annotate | Download | only in filters

Lines Matching refs:topLeft

68 inline void FELighting::LightingData::topLeft(int offset, IntPoint& normalVector)
122 int topLeft = 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);
138 int topLeft = static_cast<int>(pixels->get(offset - cPixelSize + cAlphaChannelOffset));
143 normalVector.setX(-topLeft + top - (left << 1) + (center << 1) - bottomLeft + bottom);
144 normalVector.setY(-topLeft - (top << 1) + bottomLeft + (bottom << 1));
164 int topLeft = 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);
176 int topLeft = static_cast<int>(pixels->get(offset - cPixelSize + cAlphaChannelOffset));
178 normalVector.setX(-topLeft + top - (left << 1) + (center << 1));
179 normalVector.setY(-topLeft - (top << 1) + left + (center << 1));
261 data.topLeft(offset, normalVector);