#metal #info #apple #process #decode #entries

app mtl-info

Process and decode Apple Metal library files

1 unstable release

0.2.0 Mar 12, 2019

#28 in #metal

21 downloads per month

MIT license

15KB
365 lines

Metal Info (mtl-info)

A command line tool for decoding and processing Apple's Metal Library files metallib.

Installing

mtl-info is distributed with cargo. If Rust and Cargo are installed then follow the commands below to get it installed on your system.

cargo install mtl-info
# Check build output. If $PATH is setup correctly you can now run
mtl-info --help

Usage

Listing Entries

For listing the names of every Metal fragment or vertex shader in the Metal library.

mtl-info ./default.metallib list

Processing Shader Code

Metal library files contain LLVM bitcode which can be disassembled into a more human-readable assembly format.

# Find entry by name
mtl-info ./default.metallib bitcode --with-name outlineRetina_frag

# Find entry by index
mtl-info ./default.metallib bitcode --with-index 3

Dependencies

~0.6–9.5MB
~60K SLoC