mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-25 22:25:07 +00:00
25 lines
581 B
C++
25 lines
581 B
C++
//
|
|
// Copyright Contributors to the MaterialX Project
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include <PyMaterialX/PyMaterialX.h>
|
|
|
|
namespace py = pybind11;
|
|
|
|
void bindPyFile(py::module& mod);
|
|
void bindPyXmlIo(py::module& mod);
|
|
void bindPyUtil(py::module& mod);
|
|
|
|
PYBIND11_MODULE(PyMaterialXFormat, mod)
|
|
{
|
|
mod.doc() = "Cross-platform support for document serialization and file utilities.";
|
|
|
|
// PyMaterialXFormat depends on types defined in PyMaterialXCore
|
|
PYMATERIALX_IMPORT_MODULE(PyMaterialXCore);
|
|
|
|
bindPyFile(mod);
|
|
bindPyXmlIo(mod);
|
|
bindPyUtil(mod);
|
|
}
|