Add Chromium-only Blender WebEngine parity work

This commit is contained in:
mes123456
2026-08-12 04:47:48 -04:00
commit 9fd26010f6
18225 changed files with 11622124 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
*
* SPDX-License-Identifier: Apache-2.0 */
#pragma once
#include "util/string.h"
#include "util/vector.h"
CCL_NAMESPACE_BEGIN
/* Merge OpenEXR multi-layer renders. */
class ImageMerger {
public:
ImageMerger();
bool run();
/* Error message after running, in case of failure. */
string error;
/* List of image filepaths to merge. */
vector<string> input;
/* Output filepath. */
string output;
};
CCL_NAMESPACE_END