Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/render/merge.h
| Show All 11 Lines | |||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
| * See the License for the specific language governing permissions and | * See the License for the specific language governing permissions and | ||||
| * limitations under the License. | * limitations under the License. | ||||
| */ | */ | ||||
| #ifndef __MERGE_H__ | #ifndef __MERGE_H__ | ||||
| #define __MERGE_H__ | #define __MERGE_H__ | ||||
| #include "util/util_api.h" | |||||
| #include "util/util_string.h" | #include "util/util_string.h" | ||||
| #include "util/util_vector.h" | #include "util/util_vector.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| /* Merge OpenEXR multilayer renders. */ | /* Merge OpenEXR multilayer renders. */ | ||||
| class ImageMerger { | class ImageMerger { | ||||
| public: | public: | ||||
| ImageMerger(); | ImageMerger(); | ||||
| bool run(); | bool run(); | ||||
| /* Error message after running, in case of failure. */ | /* Error message after running, in case of failure. */ | ||||
| string error; | GET_READ_ONLY(string, error) | ||||
| /* List of image filepaths to merge. */ | /* List of image filepaths to merge. */ | ||||
| vector<string> input; | GET_SET(vector<string>, input) | ||||
| /* Output filepath. */ | /* Output filepath. */ | ||||
| string output; | GET_SET(string, output) | ||||
| }; | }; | ||||
| CCL_NAMESPACE_END | CCL_NAMESPACE_END | ||||
| #endif /* __MERGE_H__ */ | #endif /* __MERGE_H__ */ | ||||