(Type type, Supplier<String> source)
| 213 | s.name = GL20.glCreateProgram(); |
| 214 | return s; |
| 215 | } |
| 216 | |
| 217 | public Source addSource(Type type, Supplier<String> source) { |
| 218 | Source s = new Source(source, type); |
| 219 | this.source.put(type, s); |
| 220 | return s; |
| 221 | } |
| 222 |
no test coverage detected