#ifndef UTIL_EGLPLATFORMPARAMETERS_H_
#define UTIL_EGLPLATFORMPARAMETERS_H_
#include "util/util_gl.h"
#include "autogen/angle_features_autogen.h"
#include <string>
#include <tuple>
#include <vector>
namespace angle
{
struct PlatformMethods;
enum class GLESDriverType
{ … };
inline bool IsANGLE(angle::GLESDriverType driverType)
{ … }
GLESDriverType GetDriverTypeFromString(const char *driverName, GLESDriverType defaultDriverType);
}
struct EGLPlatformParameters
{ … };
inline bool operator<(const EGLPlatformParameters &a, const EGLPlatformParameters &b)
{ … }
inline bool operator==(const EGLPlatformParameters &a, const EGLPlatformParameters &b)
{ … }
inline bool operator!=(const EGLPlatformParameters &a, const EGLPlatformParameters &b)
{ … }
#endif