chore: initial commit

This commit is contained in:
fallenoak 2023-01-02 13:17:18 -06:00
commit 70b00c5c38
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
965 changed files with 264882 additions and 0 deletions

28
src/gx/CGxCaps.hpp Normal file
View file

@ -0,0 +1,28 @@
#ifndef GX_C_GX_CAPS_HPP
#define GX_C_GX_CAPS_HPP
#include "gx/Types.hpp"
#include <cstdint>
class CGxCaps {
public:
int32_t m_pixelCenterOnEdge = 0;
int32_t m_texelCenterOnEdge = 0;
EGxColorFormat m_colorFormat = GxCF_argb;
int32_t m_generateMipMaps = 0;
uint32_t m_maxTextureSize = 0;
int32_t m_texFmtDxt1 = 0;
int32_t m_texFmtDxt3 = 0;
int32_t m_texFmtDxt5 = 0;
EGxShVS m_vertexShaderTarget = GxShVS_none;
EGxShPS m_pixelShaderTarget = GxShPS_none;
int32_t m_texFilterAnisotropic = 0;
uint32_t m_maxTexAnisotropy = 0;
int32_t m_texTarget[GxTexTargets_Last];
uint32_t m_texMaxSize[GxTexTargets_Last];
int32_t int130 = 1;
int32_t int134 = 0;
int32_t int138 = 0;
};
#endif