Skip to content

Commit

Permalink
Update pymrpt
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Dec 10, 2024
1 parent c368e31 commit 0a982d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/src/mrpt/opengl/Texture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ void bind_mrpt_opengl_Texture(std::function< pybind11::module &(std::string cons
}

}
// mrpt::opengl::getNewTextureNumber() file:mrpt/opengl/Texture.h line:137
M("mrpt::opengl").def("getNewTextureNumber", (unsigned int (*)()) &mrpt::opengl::getNewTextureNumber, "C++: mrpt::opengl::getNewTextureNumber() --> unsigned int");
// mrpt::opengl::getNewTextureNumber(const unsigned char *) file:mrpt/opengl/Texture.h line:137
M("mrpt::opengl").def("getNewTextureNumber", (unsigned int (*)(const unsigned char *)) &mrpt::opengl::getNewTextureNumber, "C++: mrpt::opengl::getNewTextureNumber(const unsigned char *) --> unsigned int", pybind11::arg("optionalRgbDataForAssociation"));

// mrpt::opengl::releaseTextureName(const unsigned int &) file:mrpt/opengl/Texture.h line:138
M("mrpt::opengl").def("releaseTextureName", (void (*)(const unsigned int &)) &mrpt::opengl::releaseTextureName, "C++: mrpt::opengl::releaseTextureName(const unsigned int &) --> void", pybind11::arg("t"));
Expand Down

0 comments on commit 0a982d9

Please sign in to comment.