mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-02-01 08:52:11 +01:00
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);
|
||
|
|
||
|
}
|