mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
22 lines
347 B
C++
22 lines
347 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&);
|
|
|
|
#endif
|