mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
14 lines
226 B
Rust
14 lines
226 B
Rust
use hal;
|
|
|
|
pub struct CommandBuffer<B: hal::Backend> {
|
|
raw: B::CommandBuffer,
|
|
}
|
|
|
|
pub struct RenderPass<B: hal::Backend> {
|
|
raw: B::CommandBuffer,
|
|
}
|
|
|
|
pub struct ComputePass<B: hal::Backend> {
|
|
raw: B::CommandBuffer,
|
|
}
|