// // Copyright Contributors to the MaterialX Project // SPDX-License-Identifier: Apache-2.0 // #include namespace py = pybind11; void bindPyGlslProgram(py::module& mod); void bindPyGlslRenderer(py::module& mod); void bindPyGLTextureHandler(py::module& mod); void bindPyTextureBaker(py::module& mod); PYBIND11_MODULE(PyMaterialXRenderGlsl, mod) { mod.doc() = "Module containing Python bindings for the MaterialXRenderGlsl library"; // PyMaterialXRenderGlsl depends on types defined in PyMaterialXRender PYMATERIALX_IMPORT_MODULE(PyMaterialXRender); bindPyGlslProgram(mod); bindPyGlslRenderer(mod); bindPyGLTextureHandler(mod); bindPyTextureBaker(mod); }