vulkan_gen 0.3.0

Vulkan XML specification parser and Rust binding generator. Used internally by the vulkane crate, but reusable as a standalone code generator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Simple logging utilities for the code generator

pub fn log_info(msg: &str) {
    eprintln!("[INFO] {}", msg);
}

pub fn log_debug(_msg: &str) {
    // Debug messages are suppressed in normal builds
}

pub fn log_warn(msg: &str) {
    eprintln!("[WARN] {}", msg);
}

pub fn log_error(msg: &str) {
    eprintln!("[ERROR] {}", msg);
}