feat(profile): more hardware detection

This commit is contained in:
phaneron 2024-12-20 15:12:31 -05:00
parent 0fa8d70e2c
commit 1e6fb307de
16 changed files with 26811 additions and 33 deletions

View file

@ -0,0 +1,16 @@
#ifndef GX_MONITOR_MODE_H
#define GX_MONITOR_MODE_H
DECLARE_STRUCT(CGxMonitorMode);
#include "tempest/vector.h"
#include "storm/array.h"
struct CGxMonitorMode {
C2iVector size;
uint32_t bpp;
uint32_t refreshRate;
};
STORM_TS_GROWABLE_ARRAY(CGxMonitorMode);
#endif