Home
last modified time | relevance | path

Searched refs:glCalls (Results 1 – 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
DGLTrace.java50 public GLTrace(TraceFileInfo traceFileInfo, List<GLFrame> glFrames, List<GLCall> glCalls, in GLTrace() argument
54 mGLCalls = glCalls; in GLTrace()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DGLFunctionTraceViewer.java909 String glCalls = serializeGlCalls(mTrace.getGLCalls(), mCallStartIndex, mCallEndIndex); in exportFrameTo() local
910 Files.write(glCalls, f, Charsets.UTF_8); in exportFrameTo()
913 private String serializeGlCalls(List<GLCall> glCalls, int start, int end) { in serializeGlCalls() argument
916 sb.append(glCalls.get(start).toString()); in serializeGlCalls()