()
| 116 | } |
| 117 | |
| 118 | getGLShortName(): string { |
| 119 | const content: any = this.getGLRenderableContent(); |
| 120 | const shortContentName = String( |
| 121 | (content && content.constructor && content.constructor.name) || content |
| 122 | ); |
| 123 | return `Bus(${ |
| 124 | this.glNode ? this.glNode.getGLShortName() : shortContentName |
| 125 | })`; |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * Capture the underlying Node pixels. |
nothing calls this directly
no test coverage detected