diff options
Diffstat (limited to '3rdparty/bgfx/examples/common/bgfx_utils.h')
-rw-r--r-- | 3rdparty/bgfx/examples/common/bgfx_utils.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3rdparty/bgfx/examples/common/bgfx_utils.h b/3rdparty/bgfx/examples/common/bgfx_utils.h index 2938abff1b9..a2427e51182 100644 --- a/3rdparty/bgfx/examples/common/bgfx_utils.h +++ b/3rdparty/bgfx/examples/common/bgfx_utils.h @@ -43,4 +43,12 @@ void meshStateDestroy(MeshState* _meshState); void meshSubmit(const Mesh* _mesh, uint8_t _id, bgfx::ProgramHandle _program, const float* _mtx, uint64_t _state = BGFX_STATE_MASK); void meshSubmit(const Mesh* _mesh, const MeshState*const* _state, uint8_t _numPasses, const float* _mtx, uint16_t _numMatrices = 1); +struct Args +{ + Args(int _argc, char** _argv); + + bgfx::RendererType::Enum m_type; + uint16_t m_pciId; +}; + #endif // BGFX_UTILS_H_HEADER_GUARD |