| 89 | } |
| 90 | |
| 91 | void DFB::commit() |
| 92 | { |
| 93 | FrameBuffer::commit(); |
| 94 | |
| 95 | if (localFBonMaster) { |
| 96 | // We need image operations to be added to inner local FB as well, the local |
| 97 | // FB possess complete image and is responsible for post-processing |
| 98 | // execution |
| 99 | if (hasParam("imageOperation")) |
| 100 | localFBonMaster->setParam("imageOperation", |
| 101 | static_cast<ManagedObject *>(getParamObject<Data>("imageOperation"))); |
| 102 | localFBonMaster->commit(); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | mpicommon::Group DFB::getMPIGroup() |
| 107 | { |
no test coverage detected