(filterEffect: Effect, container: Container, instructionSet: InstructionSet)
| 27 | } |
| 28 | |
| 29 | public push(filterEffect: Effect, container: Container, instructionSet: InstructionSet): void |
| 30 | { |
| 31 | const renderPipes = this._renderer.renderPipes; |
| 32 | |
| 33 | renderPipes.batch.break(instructionSet); |
| 34 | |
| 35 | instructionSet.add({ |
| 36 | renderPipeId: 'filter', |
| 37 | canBundle: false, |
| 38 | action: 'pushFilter', |
| 39 | container, |
| 40 | filterEffect, |
| 41 | } as FilterInstruction); |
| 42 | } |
| 43 | |
| 44 | public pop(_filterEffect: Effect, _container: Container, instructionSet: InstructionSet): void |
| 45 | { |
no test coverage detected