(vertexShader, fragmentShaderSource)
| 350 | |
| 351 | class Material { |
| 352 | constructor (vertexShader, fragmentShaderSource) { |
| 353 | this.vertexShader = vertexShader; |
| 354 | this.fragmentShaderSource = fragmentShaderSource; |
| 355 | this.programs = []; |
| 356 | this.activeProgram = null; |
| 357 | this.uniforms = []; |
| 358 | } |
| 359 | |
| 360 | setKeywords (keywords) { |
| 361 | let hash = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected