mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-25 14:15:02 +00:00
19 lines
409 B
C++
19 lines
409 B
C++
//
|
|
// 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);
|
|
}
|