#texture-compression #texture #gpu #graphics #api-bindings #game

basis-universal

Bindings for the basis-universal Supercompressed GPU Texture Codec by Binomial

8 releases

0.3.1 Nov 2, 2023
0.3.0 May 6, 2023
0.2.0 Feb 6, 2022
0.1.1 Mar 13, 2021
0.0.3 Feb 15, 2021

#94 in Game dev

Download history 797/week @ 2023-12-13 582/week @ 2023-12-20 942/week @ 2023-12-27 1384/week @ 2024-01-03 1469/week @ 2024-01-10 1794/week @ 2024-01-17 2163/week @ 2024-01-24 2085/week @ 2024-01-31 1845/week @ 2024-02-07 1864/week @ 2024-02-14 2566/week @ 2024-02-21 2352/week @ 2024-02-28 2060/week @ 2024-03-06 2063/week @ 2024-03-13 2156/week @ 2024-03-20 1666/week @ 2024-03-27

8,316 downloads per month
Used in 10 crates (4 directly)

MIT/Apache

8.5MB
107K SLoC

C++ 63K SLoC // 0.0% comments C 34K SLoC // 0.3% comments Bitbake 6K SLoC Rust 3K SLoC // 0.0% comments Visual Studio Project 424 SLoC Shell 322 SLoC // 0.1% comments Python 119 SLoC // 0.4% comments Visual Studio Solution 56 SLoC

basis-universal-rs

Bindings for Binomial LLC's basis-universal Supercompressed GPU Texture Codec

basis-universal functionality can be grouped into two categories:

  • Encoding: Compresses and encode textures (optionally combining multiple images and mipmap layers in a single file/binary blob)
  • Transcoding: Unpacks the texture into GPU-friendly compression formats. The final format can be chosen based on what the available GPU hardware can support.

Encoding can be done ahead of time using a command line tool in the upstream repository.

The encoded data can either be stored as a file or a binary blob. This data can include multiple images, and each image can store multiple levels. This is commonly used for storing cube textures and textures with precomputed mipmaps. This library also supports generating mipmaps for you.

Please refer to https://github.com/BinomialLLC/basis_universal for more details.

Status

These bindings should be production-ready. The API should remain fairly stable (assuming no major upstream changes in the wrapped basis-universal library)

Performance

The C++ code that is wrapped by these bindings is built at the same optimization level used for building the basis-universal-sys crate. Most users of these bindings will benefit from building this crate with optimizations enabled, even during development. To do that, place this in your Cargo.toml file.

[profile.dev.package."basis-universal-sys"]
opt-level = 3

Enable optimizations for ALL upstream crates works too:

[profile.dev.package."*"]
opt-level = 3

License

The bindings are licensed under either of

at your option.

Upstream Dependencies

Some dependencies may be licensed under other terms. These licenses include "ISC", "CC0-1.0", "BSD-2-Clause", "BSD-3-Clause", and "Zlib". This is validated on a best-effort basis in every CI run using cargo-deny.

Binomial LLC's basis-universal Supercompressed GPU Texture Codec is licensed under Apache License 2.0:

Copyright (C) 2019-2020 Binomial LLC. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

See LICENSE-APACHE and LICENSE-MIT.

Dependencies