This commit is contained in:
2026-01-06 13:25:49 +00:00
parent 5d495d731b
commit 4e15e08b7f
1395 changed files with 295666 additions and 323 deletions
@@ -0,0 +1,18 @@
//
// Copyright Contributors to the MaterialX Project
// SPDX-License-Identifier: Apache-2.0
//
#include <MaterialXFormat/Environ.h>
#include <emscripten/bind.h>
namespace ems = emscripten;
namespace mx = MaterialX;
EMSCRIPTEN_BINDINGS(environ)
{
ems::function("getEnviron", &mx::getEnviron);
ems::function("setEnviron", &mx::setEnviron);
ems::function("removeEnviron", &mx::removeEnviron);
}