[][src]Macro ktx::include_ktx

macro_rules! include_ktx {
    ($path:tt) => { ... };
}

Wrapper for include_bytes! returning Ktx<'static [u8]>

Example

use ktx::{include_ktx, Ktx};
let image: Ktx<&'static [u8]> = include_ktx!("../tests/babg-bc3.ktx");