Home | History | Annotate | Download | only in egl

Lines Matching refs:eglw

53 	void				expectError				(eglw::EGLenum error);
54 void expectEitherError (eglw::EGLenum errorA, eglw::EGLenum errorB);
55 void expectBoolean (eglw::EGLBoolean expected, eglw::EGLBoolean got);
57 void expectNoContext (eglw::EGLContext got);
58 void expectNoSurface (eglw::EGLSurface got);
59 void expectNoDisplay (eglw::EGLDisplay got);
62 inline void expectTrue (eglw::EGLBoolean got) { expectBoolean(EGL_TRUE, got); }
63 inline void expectFalse (eglw::EGLBoolean got) { expectBoolean(EGL_FALSE, got); }
65 eglw::EGLDisplay getDisplay (void) { return m_display; }
66 bool isAPISupported (eglw::EGLenum api) const;
67 bool getConfig (eglw::EGLConfig* cfg, const eglu::FilterList& filters);
70 eglw::EGLDisplay m_display;
71 std::vector<eglw::EGLenum> m_supportedClientAPIs;