mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-27 22:36:05 +03:00
19 lines
346 B
C++
19 lines
346 B
C++
#ifndef GX_DEVICE_HPP
|
|
#define GX_DEVICE_HPP
|
|
|
|
#include "gx/CGxDevice.hpp"
|
|
#include "gx/Types.hpp"
|
|
#include <cstdint>
|
|
|
|
class CGxFormat;
|
|
|
|
extern CGxDevice* g_theGxDevicePtr;
|
|
|
|
CGxDevice* GxDevCreate(EGxApi, long (*)(void*, uint32_t, uint32_t, long), const CGxFormat&);
|
|
|
|
EGxApi GxDevApi(void);
|
|
|
|
int32_t GxMasterEnable(EGxMasterEnables state);
|
|
|
|
#endif
|