Lines Matching refs:platformID
138 return _glfw.platform.platformID;
141 GLFWAPI int glfwPlatformSupported(int platformID)
146 if (platformID != GLFW_PLATFORM_WIN32 &&
147 platformID != GLFW_PLATFORM_COCOA &&
148 platformID != GLFW_PLATFORM_WAYLAND &&
149 platformID != GLFW_PLATFORM_X11 &&
150 platformID != GLFW_PLATFORM_NULL)
152 _glfwInputError(GLFW_INVALID_ENUM, "Invalid platform ID 0x%08X", platformID);
156 if (platformID == GLFW_PLATFORM_NULL)
161 if (platformID == supportedPlatforms[i].ID)