(String name, int color)
| 1148 | |
| 1149 | |
| 1150 | @Override |
| 1151 | public void attribColor(String name, int color) { |
| 1152 | VertexAttribute attrib = attribImpl(name, VertexAttribute.COLOR, PGL.INT, 1); |
| 1153 | if (attrib != null) attrib.set(new int[] {color}); |
| 1154 | } |
| 1155 | |
| 1156 | |
| 1157 | @Override |
nothing calls this directly
no test coverage detected