Searched refs:GLFrame (Results 1 – 4 of 4) sorted by relevance
42 private final List<GLFrame> mGLFrames;50 public GLTrace(TraceFileInfo traceFileInfo, List<GLFrame> glFrames, List<GLCall> glCalls, in GLTrace()58 public List<GLFrame> getFrames() { in getFrames()62 public GLFrame getFrame(int i) { in getFrame()75 GLFrame frame = mGLFrames.get(frameIndex); in getGLCallsForFrame()
23 public class GLFrame { class34 public GLFrame(int frameIndex, int startCallIndex, int endCallIndex) { in GLFrame() method in GLFrame
24 import com.android.ide.eclipse.gltrace.model.GLFrame;148 List<GLFrame> glFrames = null; in run()226 private List<GLFrame> createFrames(List<GLCall> calls) { in createFrames()227 List<GLFrame> glFrames = new ArrayList<GLFrame>(); in createFrames()234 glFrames.add(new GLFrame(frameIndex, startCallIndex, i + 1)); in createFrames()242 glFrames.add(new GLFrame(frameIndex, startCallIndex, mGLCalls.size())); in createFrames()
28 import com.android.ide.eclipse.gltrace.model.GLFrame;356 GLFrame f = mTrace.getFrame(selectedFrame - 1); in selectFrame()