mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-19 06:01:07 +03:00
12 lines
371 B
C++
12 lines
371 B
C++
#include "gx/Adapter.hpp"
|
|
#include "gx/CGxDevice.hpp"
|
|
#include "gx/CGxMonitorMode.hpp"
|
|
|
|
int32_t GxAdapterFormats(EGxApi api, TSGrowableArray<CGxFormat>& adapterFormats) {
|
|
return CGxDevice::AdapterFormats(api, adapterFormats);
|
|
}
|
|
|
|
int32_t GxAdapterMonitorModes(TSGrowableArray<CGxMonitorMode>& monitorModes) {
|
|
return CGxDevice::AdapterMonitorModes(monitorModes);
|
|
}
|