1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-14 00:48:44 +01:00
dxvk/src/d3d11/d3d11_util.h

21 lines
418 B
C
Raw Normal View History

#pragma once
2017-12-15 19:11:10 +01:00
#include "../dxvk/dxvk_device.h"
#include "../dxbc/dxbc_util.h"
#include "d3d11_include.h"
namespace dxvk {
2017-12-19 16:01:50 +01:00
HRESULT GetSampleCount(
UINT Count,
VkSampleCountFlagBits* pCount);
VkCompareOp DecodeCompareOp(
2017-12-19 16:01:50 +01:00
D3D11_COMPARISON_FUNC mode);
VkMemoryPropertyFlags GetMemoryFlagsForUsage(
2017-12-19 16:01:50 +01:00
D3D11_USAGE usage);
}