mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 18:23:52 +01:00
24 lines
509 B
C++
24 lines
509 B
C++
#pragma once
|
|
|
|
#include "../dxvk/dxvk_device.h"
|
|
|
|
#include "../dxbc/dxbc_util.h"
|
|
|
|
#include "d3d11_include.h"
|
|
|
|
namespace dxvk {
|
|
|
|
HRESULT GetSampleCount(
|
|
UINT Count,
|
|
VkSampleCountFlagBits* pCount);
|
|
|
|
VkBorderColor DecodeBorderColor(
|
|
const FLOAT BorderColor[4]);
|
|
|
|
VkCompareOp DecodeCompareOp(
|
|
D3D11_COMPARISON_FUNC Mode);
|
|
|
|
VkMemoryPropertyFlags GetMemoryFlagsForUsage(
|
|
D3D11_USAGE Usage);
|
|
|
|
} |