librashader/librashader-runtime-d3d12/src/texture.rs
2024-08-02 00:16:52 -04:00

135 lines
3.6 KiB
Rust

use crate::descriptor_heap::{CpuStagingHeap, D3D12DescriptorHeapSlot, RenderTargetHeap};
use librashader_common::{FilterMode, Size, WrapMode};
use std::ops::Deref;
use windows::Win32::Graphics::Direct3D12::{ID3D12Resource, D3D12_CPU_DESCRIPTOR_HANDLE};
use windows::Win32::Graphics::Dxgi::Common::DXGI_FORMAT;
/// An image for use as shader resource view.
pub struct D3D12InputImage {
pub resource: ID3D12Resource,
pub descriptor: D3D12_CPU_DESCRIPTOR_HANDLE,
}
#[derive(Clone)]
pub(crate) enum InputDescriptor {
Owned(D3D12DescriptorHeapSlot<CpuStagingHeap>),
Raw(D3D12_CPU_DESCRIPTOR_HANDLE),
}
#[derive(Clone)]
pub(crate) enum OutputDescriptor {
Owned(D3D12DescriptorHeapSlot<RenderTargetHeap>),
Raw(D3D12_CPU_DESCRIPTOR_HANDLE),
}
impl AsRef<D3D12_CPU_DESCRIPTOR_HANDLE> for InputDescriptor {
fn as_ref(&self) -> &D3D12_CPU_DESCRIPTOR_HANDLE {
match self {
InputDescriptor::Owned(h) => h.deref().as_ref(),
InputDescriptor::Raw(h) => h,
}
}
}
impl AsRef<D3D12_CPU_DESCRIPTOR_HANDLE> for OutputDescriptor {
fn as_ref(&self) -> &D3D12_CPU_DESCRIPTOR_HANDLE {
match self {
OutputDescriptor::Owned(h) => h.deref().as_ref(),
OutputDescriptor::Raw(h) => h,
}
}
}
/// An image view for use as a render target.
///
/// Can be created from a CPU descriptor handle, and a size.
#[derive(Clone)]
pub struct D3D12OutputView {
pub(crate) descriptor: OutputDescriptor,
pub(crate) size: Size<u32>,
pub(crate) format: DXGI_FORMAT,
}
impl D3D12OutputView {
pub(crate) fn new(
handle: D3D12DescriptorHeapSlot<RenderTargetHeap>,
size: Size<u32>,
format: DXGI_FORMAT,
) -> D3D12OutputView {
let descriptor = OutputDescriptor::Owned(handle);
D3D12OutputView {
descriptor,
size,
format,
}
}
// unsafe since the lifetime of the handle has to survive
pub unsafe fn new_from_raw(
handle: D3D12_CPU_DESCRIPTOR_HANDLE,
size: Size<u32>,
format: DXGI_FORMAT,
) -> D3D12OutputView {
let descriptor = OutputDescriptor::Raw(handle);
D3D12OutputView {
descriptor,
size,
format,
}
}
}
#[derive(Clone)]
pub struct InputTexture {
pub(crate) resource: ID3D12Resource,
pub(crate) descriptor: InputDescriptor,
pub(crate) size: Size<u32>,
pub(crate) format: DXGI_FORMAT,
pub(crate) wrap_mode: WrapMode,
pub(crate) filter: FilterMode,
}
impl InputTexture {
pub fn new(
resource: ID3D12Resource,
handle: D3D12DescriptorHeapSlot<CpuStagingHeap>,
size: Size<u32>,
format: DXGI_FORMAT,
filter: FilterMode,
wrap_mode: WrapMode,
) -> InputTexture {
let srv = InputDescriptor::Owned(handle);
InputTexture {
resource,
descriptor: srv,
size,
format,
wrap_mode,
filter,
}
}
// unsafe since the lifetime of the handle has to survive
pub unsafe fn new_from_raw(
image: D3D12InputImage,
filter: FilterMode,
wrap_mode: WrapMode,
) -> InputTexture {
let desc = unsafe { image.resource.GetDesc() };
InputTexture {
resource: image.resource,
descriptor: InputDescriptor::Raw(image.descriptor),
size: Size::new(desc.Width as u32, desc.Height),
format: desc.Format,
wrap_mode,
filter,
}
}
}
impl AsRef<InputTexture> for InputTexture {
fn as_ref(&self) -> &InputTexture {
self
}
}