mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-08 10:25:59 +03:00
28 lines
424 B
C++
28 lines
424 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];
|
|
|
|
const CGxCaps& GxCaps();
|
|
|
|
bool GxCapsWindowHasFocus(int32_t);
|
|
|
|
void GxCapsWindowSize(CRect&);
|
|
|
|
void GxFormatColor(CImVector&);
|
|
|
|
void GxLogOpen();
|
|
|
|
void GxLogClose();
|
|
|
|
void GxLog(const char* format, ...);
|
|
|
|
#endif
|