mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-08 10:46:09 +01:00
21 lines
325 B
C
21 lines
325 B
C
|
#pragma once
|
||
|
|
||
|
#include "d3d11_include.h"
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
enum class D3D11CmdType {
|
||
|
DrawIndirect,
|
||
|
DrawIndirectIndexed,
|
||
|
};
|
||
|
|
||
|
struct D3D11CmdData {
|
||
|
D3D11CmdType type;
|
||
|
};
|
||
|
|
||
|
struct D3D11CmdDrawIndirectData : public D3D11CmdData {
|
||
|
uint32_t offset;
|
||
|
uint32_t count;
|
||
|
};
|
||
|
|
||
|
}
|