Home | History | Annotate | Download | only in filterfw

Lines Matching refs:VertexAttribute

56     private HashMap<String, VertexAttribute> mAttributes = new HashMap<String, VertexAttribute>();
77 private static class VertexAttribute {
90 public VertexAttribute(String name, int index) {
401 VertexAttribute attr = getProgramAttribute(attributeName, true);
407 VertexAttribute attr = getProgramAttribute(attributeName, true);
632 for (VertexAttribute attr : mAttributes.values()) {
642 VertexAttribute attr = getProgramAttribute(texCoordAttributeName(), false);
654 VertexAttribute attr = getProgramAttribute(positionAttributeName(), false);
759 private VertexAttribute getProgramAttribute(String name, boolean required) {
760 VertexAttribute result = mAttributes.get(name);
764 result = new VertexAttribute(name, handle);