mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-21 02:52:10 +01:00
60e523b4bf
Co-authored-by: WinterSnowfall <WinterSnowfall@users.noreply.github.com> ## Config Changes Co-authored-by: Blisto91 <47954800+Blisto91@users.noreply.github.com> Co-authored-by: simifor <simirmonfor@gmail.com>
18 lines
393 B
C++
18 lines
393 B
C++
#pragma once
|
|
|
|
#include "d3d8_include.h"
|
|
#include "d3d8_options.h"
|
|
|
|
namespace dxvk {
|
|
|
|
struct D3D9VertexShaderCode {
|
|
d3d9::D3DVERTEXELEMENT9 declaration[MAXD3DDECLLENGTH + 1];
|
|
std::vector<DWORD> function;
|
|
};
|
|
|
|
D3D9VertexShaderCode TranslateVertexShader8(
|
|
const DWORD* pDeclaration,
|
|
const DWORD* pFunction,
|
|
const D3D8Options& overrides);
|
|
|
|
} |