Home | History | Annotate | Download | only in hwc

Lines Matching defs:rectangle

48  *        # White YV12 rectangle, with overlapping turquoise
49 * # RGBA8888 rectangle at 30%% (alpha: 0.7) transparency
68 * of the graphic format and then the display frame rectangle where
69 * the frame will be displayed. The display frame rectangle is
143 class Rectangle {
145 Rectangle() : format(defaultFormat), transform(defaultTransform),
164 list<Rectangle> rectangle;
173 static Rectangle parseRect(string rectStr);
249 // Parse rectangle descriptions
251 string rectDesc(""); // String description of a single rectangle
285 // Description of a rectangle is complete when all opening
296 // Parse string description of rectangle
297 Rectangle rect = parseRect(rectDesc);
300 rectangle.push_back(rect);
302 // Prepare for description of another rectangle
309 list = hwcTestCreateLayerList(rectangle.size());
316 for (std::list<Rectangle>::iterator it = rectangle.begin();
317 it != rectangle.end(); ++it, ++layer) {
359 // Parse string description of rectangle and add it to list of rectangles
361 static Rectangle parseRect(string rectStr)
368 Rectangle rect;
567 testPrintE(" # White YV12 rectangle, with overlapping turquoise ");
568 testPrintE(" # RGBA8888 rectangle at 30%% (alpha: 0.7) transparency");