()
| 221 | } |
| 222 | |
| 223 | translateSource() { |
| 224 | const functionBuilder = FunctionBuilder.fromKernel(this, WebGL2FunctionNode, { |
| 225 | fixIntegerDivisionAccuracy: this.fixIntegerDivisionAccuracy |
| 226 | }); |
| 227 | this.translatedSource = functionBuilder.getPrototypeString('kernel'); |
| 228 | this.setupReturnTypes(functionBuilder); |
| 229 | } |
| 230 | |
| 231 | drawBuffers() { |
| 232 | this.context.drawBuffers(this.drawBuffersMap); |
nothing calls this directly
no test coverage detected