mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
22 lines
345 B
C++
22 lines
345 B
C++
|
|
#ifndef GX_GX_HPP
|
||
|
|
#define GX_GX_HPP
|
||
|
|
|
||
|
|
#include "gx/CGxCaps.hpp"
|
||
|
|
#include "gx/CGxFormat.hpp"
|
||
|
|
#include "gx/Types.hpp"
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
class CRect;
|
||
|
|
|
||
|
|
extern const char** g_gxShaderProfileNames[GxShTargets_Last];
|
||
|
|
|
||
|
|
CGxCaps* GxCaps(void);
|
||
|
|
|
||
|
|
bool GxCapsWindowHasFocus(int32_t);
|
||
|
|
|
||
|
|
void GxCapsWindowSize(CRect&);
|
||
|
|
|
||
|
|
void GxFormatColor(CImVector&);
|
||
|
|
|
||
|
|
#endif
|