Home | History | Annotate | Download | only in egl

Lines Matching defs:Frame

112 struct Frame
114 Frame (int width_, int height_);
120 Frame::Frame (int width_, int height_)
126 typedef vector<Frame> FrameSequence;
138 void render (int width, int height, const Frame& frame) const;
188 void GLES2Renderer::render (int width, int height, const Frame& frame) const
190 for (size_t drawNdx = 0; drawNdx < frame.draws.size(); drawNdx++)
192 const ColoredRect& coloredRect = frame.draws[drawNdx].rect;
194 if (frame.draws[drawNdx].drawType == DRAWTYPE_GLES2_RENDER)
244 else if (frame.draws[drawNdx].drawType == DRAWTYPE_GLES2_CLEAR)
395 vector<EGLint> getDamageRegion (const Frame& frame);
500 const Frame& currentFrame = frameSequence[frameNdx];
641 // generate a frame sequence with certain frame for visual verification
653 Frame frame (width, height);
661 frame.draws.push_back(drawCommand);
663 frameSequence.push_back(frame);
668 vector<EGLint> getDamageRegion (const Frame& frame)
671 for (size_t drawNdx = 0; drawNdx < frame.draws.size(); drawNdx++)
673 const ColoredRect& rect = frame.draws[drawNdx].rect;