Home
last modified time | relevance | path

Searched refs:mWGLContext (Results 1 – 2 of 2) sorted by relevance

/external/angle/util/windows/
DWGLWindow.cpp65 mWGLContext(nullptr), in WGLWindow()
112 mWGLContext = _wglCreateContext(mDeviceContext); in initializeGL()
113 if (!mWGLContext) in initializeGL()
151 _wglDeleteContext(mWGLContext); in initializeGL()
163 mWGLContext = _wglCreateContextAttribsARB(mDeviceContext, nullptr, kCreateAttribs); in initializeGL()
164 if (!mWGLContext) in initializeGL()
184 if (mWGLContext) in destroyGL()
186 _wglDeleteContext(mWGLContext); in destroyGL()
187 mWGLContext = nullptr; in destroyGL()
199 return mWGLContext != nullptr; in isGLInitialized()
[all …]
DWGLWindow.h49 HGLRC mWGLContext; variable