Vendor things

This commit is contained in:
John Doty 2024-03-08 11:03:01 -08:00
parent 5deceec006
commit 977e3c17e5
19434 changed files with 10682014 additions and 0 deletions

50
third-party/vendor/hassle-rs/src/lib.rs vendored Normal file
View file

@ -0,0 +1,50 @@
#![allow(dead_code)]
#![allow(non_upper_case_globals)]
#![allow(
clippy::transmute_ptr_to_ptr, // Introduced by com-rs
clippy::too_many_arguments, // We're wrapping and API outside of our control
)]
//! # Hassle
//!
//! This crate provides an FFI layer and idiomatic rust wrappers for the new [DirectXShaderCompiler](https://github.com/Microsoft/DirectXShaderCompiler) library.
//!
//! ## Simple example
//!
//! ```rust
//! use hassle_rs::compile_hlsl;
//!
//! let code = "
//! Texture2D<float4> g_input : register(t0, space0);
//! RWTexture2D<float4> g_output : register(u0, space0);
//!
//! [numthreads(8, 8, 1)]
//! void copyCs(uint3 dispatchThreadId : SV_DispatchThreadID)
//! {
//! g_output[dispatchThreadId.xy] = g_input[dispatchThreadId.xy];
//! }";
//!
//! let ir = compile_hlsl(
//! "shader_filename.hlsl",
//! code,
//! "copyCs",
//! "cs_6_1",
//! &vec!["-spirv"],
//! &vec![
//! ("MY_DEFINE", Some("Value")),
//! ("OTHER_DEFINE", None)
//! ],
//! );
//! ```
pub mod fake_sign;
pub mod ffi;
pub mod os;
pub mod utils;
pub mod wrapper;
pub mod intellisense;
pub use crate::ffi::*;
pub use crate::utils::{compile_hlsl, fake_sign_dxil_in_place, validate_dxil, HassleError, Result};
pub use crate::wrapper::*;