(Dict.Prop<T> d, Supplier<T> s)
| 32 | return uniforms.get(new Dict.Prop<T>(d)); |
| 33 | } |
| 34 | |
| 35 | public <T> Uniform<T> set(Dict.Prop<T> d, Supplier<T> s) { |
| 36 | checkName(d.getName()); return uniforms.computeIfAbsent(d, (k) -> new Uniform<T>(d.getName(), s)).setValue(s); |
| 37 | } |
| 38 | |
| 39 |
nothing calls this directly
no test coverage detected