/* Python-rgbcx Texture Compression Library Copyright (C) 2021 Andrew Cassidy Partially derived from rgbcx.h written by Richard Geldreich and licenced under the public domain This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #include #include #include #include #include #include #include "../../Decoder.h" #include "../../Encoder.h" #include "BC4Decoder.h" #include "BC4Encoder.h" namespace py = pybind11; namespace quicktex::bindings { using namespace quicktex::s3tc; using namespace quicktex::s3tc; void InitBC4(py::module_ &s3tc) { auto bc4 = s3tc.def_submodule("_bc4", "internal bc4 module"); py::options options; options.disable_function_signatures(); // BC4Encoder py::class_ bc4_encoder(bc4, "BC4Encoder", R"doc( Base: :py:class:`~quicktex.BlockEncoder` Encodes single-channel textures to BC4. )doc"); bc4_encoder.def(py::init(), py::arg("channel") = 3, R"doc( __init__(channel : int = 3) -> None Create a new BC4 encoder with the specified channel :param int channel: the channel that will be read from. 0 to 3 inclusive. Default: 3 (alpha). )doc"); bc4_encoder.def_property_readonly("channel", &BC4Encoder::GetChannel, "The channel that will be read from. 0 to 3 inclusive. Readonly."); // BC4Decoder py::class_ bc4_decoder(bc4, "BC4Decoder", R"doc( Base: :py:class:`~quicktex.BlockDecoder` Decodes BC4 textures to a single-channel. )doc"); bc4_decoder.def(py::init(), py::arg("channel") = 3, R"doc( __init__(channel : int = 3) -> None Create a new BC4 decoder with the specified channel :param int channel: The channel that will be written to. 0 to 3 inclusive. Default: 3 (alpha). )doc"); bc4_decoder.def_property_readonly("channel", &BC4Decoder::GetChannel, "The channel that will be written to. 0 to 3 inclusive. Readonly."); } } // namespace quicktex::bindings