Searched defs:ApiType (Results 1 - 1 of 1) sorted by relevance

/external/deqp/framework/opengl/
H A DgluRenderContext.hpp75 class ApiType class in namespace:glu
78 ApiType (void) : m_bits(pack(0, 0, PROFILE_LAST)) {} function in class:glu::ApiType
79 ApiType (int major, int minor, Profile profile) : m_bits(pack(major, minor, profile)) {} function in class:glu::ApiType
85 bool operator== (ApiType other) const { return m_bits == other.m_bits; }
86 bool operator!= (ApiType other) const { return m_bits != other.m_bits; }
91 static ApiType es (int major, int minor) { return ApiType(major, minor, PROFILE_ES); }
92 static ApiType core (int major, int minor) { return ApiType(major, minor, PROFILE_CORE); }
93 static ApiType compatibilit
96 ApiType (deUint32 bits) : m_bits(bits) {} function in class:glu::ApiType
[all...]

Completed in 103 milliseconds