Searched defs:GLCallNode (Results 1 - 1 of 1) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
H A DGLCallGroups.java30 * A {@link GLCallNode} is a simple wrapper around a {@link GLCall} that
33 public interface GLCallNode { interface in class:GLCallGroups
38 List<GLCallNode> getChildren();
44 GLCallNode getParent();
47 void setParent(GLCallNode parent);
50 private static class GLTreeNode implements GLCallNode {
52 private GLCallNode mParent;
53 private List<GLCallNode> mGLCallNodes;
57 mGLCallNodes = new ArrayList<GLCallNode>();
66 public GLCallNode getParen
[all...]

Completed in 49 milliseconds