mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-02-04 17:52:10 +01:00
60 lines
1.5 KiB
C++
60 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "d3d9_include.h"
|
|
#include "d3d9_format.h"
|
|
#include "../dxvk/dxvk_device.h"
|
|
#include "../dxvk/dxvk_context.h"
|
|
|
|
namespace dxvk {
|
|
|
|
class D3D9FormatHelper {
|
|
|
|
public:
|
|
|
|
D3D9FormatHelper(const Rc<DxvkDevice>& device);
|
|
|
|
~D3D9FormatHelper();
|
|
|
|
void Flush();
|
|
|
|
void ConvertFormat(
|
|
const DxvkContextObjects& ctx,
|
|
D3D9_CONVERSION_FORMAT_INFO conversionFormat,
|
|
const Rc<DxvkImage>& dstImage,
|
|
VkImageSubresourceLayers dstSubresource,
|
|
const DxvkBufferSlice& srcSlice);
|
|
|
|
private:
|
|
|
|
void ConvertGenericFormat(
|
|
const DxvkContextObjects& ctx,
|
|
D3D9_CONVERSION_FORMAT_INFO videoFormat,
|
|
const Rc<DxvkImage>& dstImage,
|
|
VkImageSubresourceLayers dstSubresource,
|
|
const DxvkBufferSlice& srcSlice,
|
|
VkFormat bufferFormat,
|
|
VkExtent2D macroPixelRun);
|
|
|
|
enum BindingIds : uint32_t {
|
|
Image = 0,
|
|
Buffer = 1,
|
|
};
|
|
|
|
void InitPipelines();
|
|
|
|
VkDescriptorSetLayout CreateSetLayout();
|
|
|
|
VkPipelineLayout CreatePipelineLayout();
|
|
|
|
VkPipeline CreatePipeline(size_t size, const uint32_t* code, uint32_t specConstant);
|
|
|
|
Rc<DxvkDevice> m_device;
|
|
|
|
VkDescriptorSetLayout m_setLayout = VK_NULL_HANDLE;
|
|
VkPipelineLayout m_pipelineLayout = VK_NULL_HANDLE;
|
|
|
|
std::array<VkPipeline, D3D9ConversionFormat_Count> m_pipelines = { };
|
|
|
|
};
|
|
|
|
} |