| Crates.io | oxidx |
| lib.rs | oxidx |
| version | 0.8.0 |
| created_at | 2024-08-06 10:27:59.59741+00 |
| updated_at | 2025-04-10 20:30:35.006165+00 |
| description | Low-level D3D12 wrapper for Rust. |
| homepage | |
| repository | https://github.com/if0ne/oxidx |
| max_upload_size | |
| id | 1327132 |
| size | 868,824 |
This project provides low-level wrapper for D3D12 API.
oxidx's MSRV is 1.80.
let entry = Entry;
let factory: Factory4 = entry.create_factory(FactoryCreationFlags::empty())?;
let adapter = factory.enum_adapters(0)?;
let device: Device = entry
.create_device(&adapter, FeatureLevel::Level11)
.unwrap();
let mut options = Options1Feature::default();
device.check_feature_support(&mut options)?;