2017-11-27 15:52:24 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <dxvk_device.h>
|
|
|
|
|
2017-11-29 15:16:07 +01:00
|
|
|
#include "d3d11_device_child.h"
|
|
|
|
#include "d3d11_interfaces.h"
|
2017-11-27 15:52:24 +01:00
|
|
|
|
|
|
|
namespace dxvk {
|
|
|
|
|
|
|
|
class D3D11Device;
|
|
|
|
|
2018-03-14 14:40:09 +01:00
|
|
|
/**
|
|
|
|
* \brief Image memory mapping mode
|
|
|
|
*
|
|
|
|
* Determines how exactly \c Map will
|
|
|
|
* behave when mapping an image.
|
|
|
|
*/
|
|
|
|
enum D3D11_COMMON_TEXTURE_MAP_MODE {
|
|
|
|
D3D11_COMMON_TEXTURE_MAP_MODE_NONE, ///< Not mapped
|
|
|
|
D3D11_COMMON_TEXTURE_MAP_MODE_BUFFER, ///< Mapped through buffer
|
|
|
|
D3D11_COMMON_TEXTURE_MAP_MODE_DIRECT, ///< Directly mapped to host mem
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-03-13 23:51:30 +01:00
|
|
|
/**
|
|
|
|
* \brief Common texture description
|
|
|
|
*
|
|
|
|
* Contains all members that can be
|
|
|
|
* defined for 1D, 2D and 3D textures.
|
|
|
|
*/
|
|
|
|
struct D3D11_COMMON_TEXTURE_DESC {
|
|
|
|
UINT Width;
|
|
|
|
UINT Height;
|
|
|
|
UINT Depth;
|
|
|
|
UINT MipLevels;
|
|
|
|
UINT ArraySize;
|
|
|
|
DXGI_FORMAT Format;
|
|
|
|
DXGI_SAMPLE_DESC SampleDesc;
|
|
|
|
D3D11_USAGE Usage;
|
|
|
|
UINT BindFlags;
|
|
|
|
UINT CPUAccessFlags;
|
|
|
|
UINT MiscFlags;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief D3D11 common texture object
|
|
|
|
*
|
|
|
|
* This class implements common texture methods and
|
|
|
|
* aims to work around the issue that there are three
|
|
|
|
* different interfaces for basically the same thing.
|
|
|
|
*/
|
|
|
|
class D3D11CommonTexture {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
D3D11CommonTexture(
|
|
|
|
D3D11Device* pDevice,
|
|
|
|
const D3D11_COMMON_TEXTURE_DESC* pDesc,
|
|
|
|
D3D11_RESOURCE_DIMENSION Dimension);
|
|
|
|
|
|
|
|
~D3D11CommonTexture();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Texture properties
|
|
|
|
*
|
|
|
|
* The returned data can be used to fill in
|
|
|
|
* \c D3D11_TEXTURE2D_DESC and similar structs.
|
|
|
|
* \returns Pointer to texture description
|
|
|
|
*/
|
|
|
|
const D3D11_COMMON_TEXTURE_DESC* Desc() const {
|
|
|
|
return &m_desc;
|
|
|
|
}
|
|
|
|
|
2018-03-14 14:40:09 +01:00
|
|
|
/**
|
|
|
|
* \brief Map mode
|
|
|
|
* \returns Map mode
|
|
|
|
*/
|
|
|
|
D3D11_COMMON_TEXTURE_MAP_MODE GetMapMode() const {
|
|
|
|
return m_mapMode;
|
|
|
|
}
|
|
|
|
|
2018-03-13 23:51:30 +01:00
|
|
|
/**
|
|
|
|
* \brief The DXVK image
|
|
|
|
* \returns The DXVK image
|
|
|
|
*/
|
2018-03-14 00:45:07 +01:00
|
|
|
Rc<DxvkImage> GetImage() const {
|
2018-03-13 23:51:30 +01:00
|
|
|
return m_image;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief The DXVK buffer
|
|
|
|
* \returns The DXVK buffer
|
|
|
|
*/
|
2018-03-14 00:45:07 +01:00
|
|
|
Rc<DxvkBuffer> GetMappedBuffer() const {
|
2018-03-13 23:51:30 +01:00
|
|
|
return m_buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Currently mapped subresource
|
|
|
|
* \returns Mapped subresource
|
|
|
|
*/
|
|
|
|
VkImageSubresource GetMappedSubresource() const {
|
|
|
|
return m_mappedSubresource;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Sets mapped subresource
|
|
|
|
* \param [in] subresource THe subresource
|
|
|
|
*/
|
|
|
|
void SetMappedSubresource(VkImageSubresource subresource) {
|
|
|
|
m_mappedSubresource = subresource;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Resets mapped subresource
|
|
|
|
* Marks the texture as not mapped.
|
|
|
|
*/
|
|
|
|
void ClearMappedSubresource() {
|
|
|
|
m_mappedSubresource = VkImageSubresource { };
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Computes subresource from the subresource index
|
|
|
|
*
|
|
|
|
* Used by some functions that operate on only
|
|
|
|
* one subresource, such as \c UpdateSubresource.
|
|
|
|
* \param [in] Aspect The image aspect
|
|
|
|
* \param [in] Subresource Subresource index
|
|
|
|
* \returns The Vulkan image subresource
|
|
|
|
*/
|
|
|
|
VkImageSubresource GetSubresourceFromIndex(
|
|
|
|
VkImageAspectFlags Aspect,
|
2018-03-14 00:45:07 +01:00
|
|
|
UINT Subresource) const;
|
2018-03-13 23:51:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Format mode
|
|
|
|
*
|
|
|
|
* Determines whether the image is going to
|
|
|
|
* be used as a color image or a depth image.
|
|
|
|
* \returns Format mode
|
|
|
|
*/
|
2018-04-12 17:49:14 +02:00
|
|
|
DXGI_VK_FORMAT_MODE GetFormatMode() const;
|
2018-03-13 23:51:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Retrieves parent D3D11 device
|
|
|
|
* \param [out] ppDevice The device
|
|
|
|
*/
|
|
|
|
void GetDevice(ID3D11Device** ppDevice) const;
|
|
|
|
|
2018-05-05 15:13:35 +02:00
|
|
|
/**
|
|
|
|
* \brief Checks whether a format can be used to view this textue
|
|
|
|
*
|
|
|
|
* View formats are only compatible if they are either identical
|
|
|
|
* or from the same family of typeless formats, where the resource
|
|
|
|
* format must be typeless and the view format must be typed.
|
|
|
|
* \param [in] Format The desired view format
|
|
|
|
* \returns \c true if the format is compatible
|
|
|
|
*/
|
|
|
|
bool CheckViewFormatCompatibility(DXGI_FORMAT Format) const;
|
|
|
|
|
2018-03-13 23:51:30 +01:00
|
|
|
/**
|
|
|
|
* \brief Normalizes and validates texture description
|
|
|
|
*
|
|
|
|
* Fills in undefined values and validates the texture
|
|
|
|
* parameters. Any error returned by this method should
|
|
|
|
* be forwarded to the application.
|
|
|
|
* \param [in,out] pDesc Texture description
|
|
|
|
* \returns \c S_OK if the parameters are valid
|
|
|
|
*/
|
|
|
|
static HRESULT NormalizeTextureProperties(
|
|
|
|
D3D11_COMMON_TEXTURE_DESC* pDesc);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2018-03-14 14:40:09 +01:00
|
|
|
Com<D3D11Device> m_device;
|
|
|
|
D3D11_COMMON_TEXTURE_DESC m_desc;
|
|
|
|
D3D11_COMMON_TEXTURE_MAP_MODE m_mapMode;
|
2018-03-13 23:51:30 +01:00
|
|
|
|
2018-03-14 14:40:09 +01:00
|
|
|
Rc<DxvkImage> m_image;
|
|
|
|
Rc<DxvkBuffer> m_buffer;
|
2018-03-13 23:51:30 +01:00
|
|
|
|
|
|
|
VkImageSubresource m_mappedSubresource
|
|
|
|
= { VK_IMAGE_ASPECT_COLOR_BIT, 0, 0 };
|
|
|
|
|
2018-03-14 01:16:31 +01:00
|
|
|
Rc<DxvkBuffer> CreateMappedBuffer() const;
|
|
|
|
|
2018-03-14 16:03:48 +01:00
|
|
|
BOOL CheckImageSupport(
|
|
|
|
const DxvkImageCreateInfo* pImageInfo,
|
|
|
|
VkImageTiling Tiling) const;
|
|
|
|
|
|
|
|
D3D11_COMMON_TEXTURE_MAP_MODE DetermineMapMode(
|
|
|
|
const DxvkImageCreateInfo* pImageInfo) const;
|
2018-03-14 14:40:09 +01:00
|
|
|
|
2018-03-13 23:51:30 +01:00
|
|
|
static VkImageType GetImageTypeFromResourceDim(
|
2018-03-14 01:16:31 +01:00
|
|
|
D3D11_RESOURCE_DIMENSION Dimension);
|
|
|
|
|
|
|
|
static VkImageLayout OptimizeLayout(
|
|
|
|
VkImageUsageFlags Usage);
|
2018-03-13 23:51:30 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-04-20 10:38:39 +02:00
|
|
|
/**
|
|
|
|
* \brief Common texture interop class
|
|
|
|
*
|
|
|
|
* Provides access to the underlying Vulkan
|
|
|
|
* texture to external Vulkan libraries.
|
|
|
|
*/
|
|
|
|
class D3D11VkInteropSurface : public IDXGIVkInteropSurface {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
D3D11VkInteropSurface(
|
2018-04-20 11:12:54 +02:00
|
|
|
ID3D11DeviceChild* pContainer,
|
2018-04-20 10:38:39 +02:00
|
|
|
D3D11CommonTexture* pTexture);
|
|
|
|
|
|
|
|
~D3D11VkInteropSurface();
|
|
|
|
|
|
|
|
ULONG STDMETHODCALLTYPE AddRef();
|
|
|
|
|
|
|
|
ULONG STDMETHODCALLTYPE Release();
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(
|
|
|
|
REFIID riid,
|
|
|
|
void** ppvObject);
|
|
|
|
|
2018-05-01 23:30:39 +02:00
|
|
|
HRESULT STDMETHODCALLTYPE GetDevice(
|
|
|
|
IDXGIVkInteropDevice** ppDevice);
|
|
|
|
|
2018-04-20 10:38:39 +02:00
|
|
|
HRESULT STDMETHODCALLTYPE GetVulkanImageInfo(
|
|
|
|
VkImage* pHandle,
|
|
|
|
VkImageLayout* pLayout,
|
|
|
|
VkImageCreateInfo* pInfo);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2018-04-20 11:12:54 +02:00
|
|
|
ID3D11DeviceChild* m_container;
|
2018-04-20 10:38:39 +02:00
|
|
|
D3D11CommonTexture* m_texture;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-23 17:05:07 +01:00
|
|
|
///////////////////////////////////////////
|
|
|
|
// D 3 D 1 1 T E X T U R E 1 D
|
|
|
|
class D3D11Texture1D : public D3D11DeviceChild<ID3D11Texture1D> {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
D3D11Texture1D(
|
|
|
|
D3D11Device* pDevice,
|
2018-03-13 23:51:30 +01:00
|
|
|
const D3D11_COMMON_TEXTURE_DESC* pDesc);
|
2017-12-23 17:05:07 +01:00
|
|
|
|
|
|
|
~D3D11Texture1D();
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(
|
|
|
|
REFIID riid,
|
|
|
|
void** ppvObject) final;
|
|
|
|
|
|
|
|
void STDMETHODCALLTYPE GetDevice(
|
|
|
|
ID3D11Device **ppDevice) final;
|
|
|
|
|
|
|
|
void STDMETHODCALLTYPE GetType(
|
|
|
|
D3D11_RESOURCE_DIMENSION *pResourceDimension) final;
|
|
|
|
|
|
|
|
UINT STDMETHODCALLTYPE GetEvictionPriority() final;
|
|
|
|
|
|
|
|
void STDMETHODCALLTYPE SetEvictionPriority(UINT EvictionPriority) final;
|
|
|
|
|
|
|
|
void STDMETHODCALLTYPE GetDesc(
|
|
|
|
D3D11_TEXTURE1D_DESC *pDesc) final;
|
|
|
|
|
2018-03-14 00:45:07 +01:00
|
|
|
D3D11CommonTexture* GetCommonTexture() {
|
|
|
|
return &m_texture;
|
2017-12-23 17:05:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2018-04-20 11:12:54 +02:00
|
|
|
D3D11CommonTexture m_texture;
|
|
|
|
D3D11VkInteropSurface m_interop;
|
2017-12-23 17:05:07 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////
|
|
|
|
// D 3 D 1 1 T E X T U R E 2 D
|
2017-12-04 13:39:37 +01:00
|
|
|
class D3D11Texture2D : public D3D11DeviceChild<ID3D11Texture2D> {
|
2017-11-27 15:52:24 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
D3D11Texture2D(
|
2017-12-19 16:01:50 +01:00
|
|
|
D3D11Device* pDevice,
|
2018-03-13 23:51:30 +01:00
|
|
|
const D3D11_COMMON_TEXTURE_DESC* pDesc);
|
2017-12-19 16:01:50 +01:00
|
|
|
|
2017-11-27 15:52:24 +01:00
|
|
|
~D3D11Texture2D();
|
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(
|
2017-11-27 15:52:24 +01:00
|
|
|
REFIID riid,
|
|
|
|
void** ppvObject) final;
|
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
void STDMETHODCALLTYPE GetDevice(
|
2017-11-27 15:52:24 +01:00
|
|
|
ID3D11Device **ppDevice) final;
|
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
void STDMETHODCALLTYPE GetType(
|
2017-11-27 15:52:24 +01:00
|
|
|
D3D11_RESOURCE_DIMENSION *pResourceDimension) final;
|
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
UINT STDMETHODCALLTYPE GetEvictionPriority() final;
|
2017-11-29 15:16:07 +01:00
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
void STDMETHODCALLTYPE SetEvictionPriority(UINT EvictionPriority) final;
|
2017-11-29 15:16:07 +01:00
|
|
|
|
2017-12-12 12:50:52 +01:00
|
|
|
void STDMETHODCALLTYPE GetDesc(
|
2017-11-27 15:52:24 +01:00
|
|
|
D3D11_TEXTURE2D_DESC *pDesc) final;
|
|
|
|
|
2018-03-14 00:45:07 +01:00
|
|
|
D3D11CommonTexture* GetCommonTexture() {
|
|
|
|
return &m_texture;
|
2017-12-19 14:47:35 +01:00
|
|
|
}
|
2017-11-29 20:19:40 +01:00
|
|
|
|
2017-11-27 15:52:24 +01:00
|
|
|
private:
|
|
|
|
|
2018-04-20 11:12:54 +02:00
|
|
|
D3D11CommonTexture m_texture;
|
|
|
|
D3D11VkInteropSurface m_interop;
|
2017-11-27 15:52:24 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2017-12-19 16:01:50 +01:00
|
|
|
|
2017-12-23 17:05:07 +01:00
|
|
|
///////////////////////////////////////////
|
|
|
|
// D 3 D 1 1 T E X T U R E 3 D
|
|
|
|
class D3D11Texture3D : public D3D11DeviceChild<ID3D11Texture3D> {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
D3D11Texture3D(
|
|
|
|
D3D11Device* pDevice,
|
2018-03-13 23:51:30 +01:00
|
|
|
const D3D11_COMMON_TEXTURE_DESC* pDesc);
|
2017-12-23 17:05:07 +01:00
|
|
|
|
|
|
|
~D3D11Texture3D();
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(
|
|
|
|
REFIID riid,
|
|
|
|
void** ppvObject) final;
|
|
|
|
|
|
|
|
void STDMETHODCALLTYPE GetDevice(
|
|
|
|
ID3D11Device **ppDevice) final;
|
|
|
|
|
|
|
|
void STDMETHODCALLTYPE GetType(
|
|
|
|
D3D11_RESOURCE_DIMENSION *pResourceDimension) final;
|
|
|
|
|
|
|
|
UINT STDMETHODCALLTYPE GetEvictionPriority() final;
|
|
|
|
|
|
|
|
void STDMETHODCALLTYPE SetEvictionPriority(UINT EvictionPriority) final;
|
|
|
|
|
|
|
|
void STDMETHODCALLTYPE GetDesc(
|
|
|
|
D3D11_TEXTURE3D_DESC *pDesc) final;
|
|
|
|
|
2018-03-14 00:45:07 +01:00
|
|
|
D3D11CommonTexture* GetCommonTexture() {
|
|
|
|
return &m_texture;
|
2017-12-23 17:05:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2018-04-20 11:12:54 +02:00
|
|
|
D3D11CommonTexture m_texture;
|
|
|
|
D3D11VkInteropSurface m_interop;
|
2017-12-23 17:05:07 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-19 16:01:50 +01:00
|
|
|
/**
|
|
|
|
* \brief Retrieves common info about a texture
|
|
|
|
*
|
|
|
|
* \param [in] pResource The resource. Must be a texture.
|
|
|
|
* \param [out] pTextureInfo Pointer to the texture info struct.
|
|
|
|
* \returns E_INVALIDARG if the resource is not a texture
|
|
|
|
*/
|
2018-03-14 00:45:07 +01:00
|
|
|
D3D11CommonTexture* GetCommonTexture(
|
2018-01-05 01:15:56 +01:00
|
|
|
ID3D11Resource* pResource);
|
2017-12-19 16:01:50 +01:00
|
|
|
|
2017-11-27 15:52:24 +01:00
|
|
|
}
|