* @return {IKernelJSON}
()
| 1595 | * @return {IKernelJSON} |
| 1596 | */ |
| 1597 | toJSON() { |
| 1598 | const json = super.toJSON(); |
| 1599 | json.functionNodes = FunctionBuilder.fromKernel(this, WebGLFunctionNode).toJSON(); |
| 1600 | json.settings.threadDim = this.threadDim; |
| 1601 | return json; |
| 1602 | } |
| 1603 | } |
| 1604 | |
| 1605 | module.exports = { |
nothing calls this directly
no test coverage detected