mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-07 19:58:32 +09:00
19 lines
447 B
C++
19 lines
447 B
C++
//
|
|
// Created by BZLZHH on 2025/3/15.
|
|
//
|
|
|
|
#ifndef MOBILEGL_BACKENDINFO_H
|
|
#define MOBILEGL_BACKENDINFO_H
|
|
|
|
namespace MG_GL::Getter {
|
|
const std::string GetGPUName();
|
|
const std::string GetBackendName();
|
|
const std::string GetBackendGfxAPIName();
|
|
const uint32_t GetBackendGfxAPIVersionMajor();
|
|
const uint32_t GetBackendGfxAPIVersionMinor();
|
|
const std::string GetMGName();
|
|
void LogMGInfo();
|
|
}
|
|
|
|
#endif //MOBILEGL_BACKENDINFO_H
|