Home | History | Annotate | Download | only in libEGL

Lines Matching refs:mWindow

29     : mDisplay(display), mConfig(config), mWindow(window), mPostSubBufferSupported(postSubBufferSupported)
51 : mDisplay(display), mWindow(NULL), mConfig(config), mShareHandle(shareHandle), mWidth(width), mHeight(height), mPostSubBufferSupported(EGL_FALSE)
123 mSwapChain = mRenderer->createSwapChain(mWindow, mShareHandle,
229 return mWindow;
252 if (!mWindow)
258 DWORD threadId = GetWindowThreadProcessId(mWindow, &processId);
265 LONG_PTR oldWndProc = SetWindowLongPtr(mWindow, GWLP_WNDPROC, reinterpret_cast<LONG_PTR>(SurfaceWindowProc));
272 SetProp(mWindow, kSurfaceProperty, reinterpret_cast<HANDLE>(this));
273 SetProp(mWindow, kParentWndProc, reinterpret_cast<HANDLE>(oldWndProc));
285 LONG_PTR parentWndFunc = reinterpret_cast<LONG_PTR>(GetProp(mWindow, kParentWndProc));
294 LONG_PTR prevWndFunc = SetWindowLongPtr(mWindow, GWLP_WNDPROC, parentWndFunc);
299 RemoveProp(mWindow, kSurfaceProperty);
300 RemoveProp(mWindow, kParentWndProc);