| 21 | PCGEX_INITIALIZE_ELEMENT(Smooth) |
| 22 | |
| 23 | bool FPCGExSmoothElement::Boot(FPCGExContext* InContext) const |
| 24 | { |
| 25 | if (!FPCGExPathProcessorElement::Boot(InContext)) { return false; } |
| 26 | |
| 27 | PCGEX_CONTEXT_AND_SETTINGS(Smooth) |
| 28 | PCGEX_OPERATION_BIND(SmoothingMethod, UPCGExSmoothingOperation, PCGExSmooth::SourceOverridesSmoothing) |
| 29 | |
| 30 | return true; |
| 31 | } |
| 32 | |
| 33 | bool FPCGExSmoothElement::ExecuteInternal(FPCGContext* InContext) const |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected