Crates.io | ispc-texcomp |
lib.rs | ispc-texcomp |
version | 0.1.20 |
source | src |
created_at | 2022-03-08 08:22:26.259675 |
updated_at | 2022-07-04 16:17:40.89399 |
description | Rust bindings for Intel's ISPC texture compressor. |
homepage | https://github.com/Danielmelody/ispc-texcomp-rs |
repository | https://github.com/Danielmelody/ispc-texcomp-rs |
max_upload_size | |
id | 546117 |
size | 14,192,784 |
Yet an another Rust binding for ispc texture compression
Supported texture formats:
Work in progress support format:
To use this crate, one could simply add this to it's Cargo.toml
[dependencies]
ispc-texcomp = "0.1"
But this would only work on platforms that comes with our prebuilt textcomp kernels, for platform outside those list, one must has ispc
installed in PATH, and the ispc feature must be toggled.
[dependencies]
ispc-texcomp = {version="0.1", features=["ispc"]}
Thus ispc
would been called on build time, compiling texcomp kernels into rs bindings and platform-specific static libraries.
Acknowledgement: this repo was imported from https://github.com/gwihlidal/intel-tex-rs, which seems to be dead.