Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
484 B
C++

//
// Copyright Contributors to the MaterialX Project
// SPDX-License-Identifier: Apache-2.0
//
#include <PyMaterialX/PyMaterialX.h>
namespace py = pybind11;
void bindPyOslShaderGenerator(py::module& mod);
PYBIND11_MODULE(PyMaterialXGenOsl, mod)
{
mod.doc() = "Shader generation using Open Shading Language.";
// PyMaterialXGenOsl depends on types defined in PyMaterialXGenShader
PYMATERIALX_IMPORT_MODULE(PyMaterialXGenShader);
bindPyOslShaderGenerator(mod);
}