feat(gx): add getter for device window

This commit is contained in:
fallenoak 2023-03-19 23:48:52 -05:00 committed by GitHub
parent bfbd7e57ad
commit acaa42019a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 17 additions and 0 deletions

View file

@ -46,6 +46,10 @@ EGxApi GxDevApi() {
return g_theGxDevicePtr->m_api;
}
void* GxDevWindow() {
return g_theGxDevicePtr->DeviceWindow();
}
int32_t GxMasterEnable(EGxMasterEnables state) {
return g_theGxDevicePtr->MasterEnable(state);
}