Home
last modified time | relevance | path

Searched refs:mGLCalls (Results 1 – 3 of 3) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
DTraceFileParserTask.java52 private List<GLCall> mGLCalls; field in TraceFileParserTask
69 mGLCalls = new ArrayList<GLCall>(); in TraceFileParserTask()
102 mGLCalls.add(c); in addMessage()
183 Collections.sort(mGLCalls, new Comparator<GLCall>() { in run()
203 for (int i = 0; i < mGLCalls.size(); i++) { in run()
204 mGLCalls.get(i).setIndex(i); in run()
208 glFrames = createFrames(mGLCalls); in run()
222 mTrace = new GLTrace(fileInfo, glFrames, mGLCalls, new ArrayList<Integer>(mGLContextIds)); in run()
241 if (startCallIndex != mGLCalls.size()) { in createFrames()
242 glFrames.add(new GLFrame(frameIndex, startCallIndex, mGLCalls.size())); in createFrames()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
DGLTrace.java45 private final List<GLCall> mGLCalls; field in GLTrace
54 mGLCalls = glCalls; in GLTrace()
67 return mGLCalls; in getGLCalls()
76 return mGLCalls.subList(frame.getStartIndex(), frame.getEndIndex()); in getGLCallsForFrame()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DStateViewPage.java78 private List<GLCall> mGLCalls; field in StateViewPage
95 mGLCalls = trace.getGLCalls(); in setInput()
97 mGLCalls = null; in setInput()
278 assert fromIndex >= -1 && fromIndex < mGLCalls.size(); in updateState()
279 assert toIndex >= 0 && toIndex < mGLCalls.size(); in updateState()
295 GLCall call = mGLCalls.get(i);
319 List<IStateTransform> transforms = mGLCalls.get(i).getStateTransformations();