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
144 class Rectangle {
146 Rectangle() : format(defaultFormat), transform(defaultTransform),
165 list<Rectangle> rectangle;
174 static Rectangle parseRect(string rectStr);
251 // Parse rectangle descriptions
253 string rectDesc(""); // String description of a single rectangle
287 // Description of a rectangle is complete when all opening
298 // Parse string description of rectangle
299 Rectangle rect = parseRect(rectDesc);
302 rectangle.push_back(rect);
304 // Prepare for description of another rectangle
311 list = hwcTestCreateLayerList(rectangle.size());
318 for (std::list<Rectangle>::iterator it = rectangle.begin();
319 it != rectangle.end(); ++it, ++layer) {
361 // Parse string description of rectangle and add it to list of rectangles
363 static Rectangle parseRect(string rectStr)
370 Rectangle rect;
570 testPrintE(" # White YV12 rectangle, with overlapping turquoise ");
571 testPrintE(" # RGBA8888 rectangle at 30%% (alpha: 0.7) transparency");