(String name, float... values)
| 1135 | |
| 1136 | |
| 1137 | @Override |
| 1138 | public void attrib(String name, float... values) { |
| 1139 | VertexAttribute attrib = attribImpl(name, VertexAttribute.OTHER, PGL.FLOAT, |
| 1140 | values.length); |
| 1141 | if (attrib != null) attrib.set(values); |
| 1142 | } |
| 1143 | |
| 1144 | |
| 1145 | @Override |
nothing calls this directly
no test coverage detected