PS5 graphics (#42)

This commit is contained in:
InoriRus
2022-08-18 12:29:59 +03:00
parent 90acd3d364
commit a753022096
10 changed files with 469 additions and 324 deletions
@@ -585,9 +585,11 @@ enum class UserSgprType
struct UserSgprInfo
{
uint32_t value[16] = {0};
UserSgprType type[16] = {};
uint32_t count = 0;
static constexpr int SGPRS_MAX = 16;
uint32_t value[SGPRS_MAX] = {0};
UserSgprType type[SGPRS_MAX] = {};
uint32_t count = 0;
};
struct VertexShaderInfo