Home
last modified time | relevance | path

Searched refs:mWindow (Results 1 – 22 of 22) sorted by relevance

/external/angle/util/osx/
DOSXWindow.mm114 mWindow = window;
121 mWindow = nil;
128 mWindow->pushEvent(event);
134 NSSize windowSize = [[mWindow->getNSWindow() contentView] frame].size;
139 mWindow->pushEvent(event);
144 NSRect screenspace = [mWindow->getNSWindow() frame];
149 mWindow->pushEvent(event);
156 mWindow->pushEvent(event);
162 if (mWindow != nil)
166 mWindow->pushEvent(event);
[all …]
DOSXWindow.h19 OSXWindow *mWindow; variable
25 OSXWindow *mWindow; variable
60 NSWindow *mWindow; variable
/external/angle/src/tests/deqp_support/
DtcuANGLENativeDisplayFactory.cpp180 OSWindow *mWindow; member in tcu::__anonb65af0d50111::NativeWindow
290 mWindow(OSWindow::New()), in NativeWindow()
305 bool initialized = mWindow->initialize("dEQP ANGLE Tests", osWindowWidth, osWindowHeight); in NativeWindow()
317 mWindow->setVisible(false); in setVisibility()
322 mWindow->setVisible(true); in setVisibility()
332 OSWindow::Delete(&mWindow); in ~NativeWindow()
337 return reinterpret_cast<eglw::EGLNativeWindowType>(mWindow->getNativeWindow()); in getLegacyNative()
342 int width = mWindow->getWidth(); in getSurfaceSize()
343 int height = mWindow->getHeight(); in getSurfaceSize()
357 mWindow->messageLoop(); in processEvents()
[all …]
/external/angle/util/display/
DDisplayWindow.cpp17 mWindow.width = 0; in DisplayWindow()
18 mWindow.height = 0; in DisplayWindow()
36 return (EGLNativeWindowType)&mWindow; in getNativeWindow()
65 mWindow.width = width; in resize()
66 mWindow.height = height; in resize()
DDisplayWindow.h48 SimpleDisplayWindow mWindow; variable
/external/angle/util/x11/
DX11Window.cpp260 mWindow(0), in X11Window()
270 mWindow(0), in X11Window()
329 mWindow = XCreateWindow(mDisplay, root, 0, 0, width, height, 0, depth, InputOutput, visual, in initializeImpl()
334 if (!mWindow) in initializeImpl()
350 if (XSetWMProtocols(mDisplay, mWindow, &WM_DELETE_WINDOW, 1) == 0) in initializeImpl()
378 if (mWindow) in destroy()
380 XDestroyWindow(mDisplay, mWindow); in destroy()
381 mWindow = 0; in destroy()
396 return mWindow; in getNativeWindow()
417 XWarpPointer(mDisplay, None, mWindow, 0, 0, 0, 0, x, y); in setMousePosition()
[all …]
DX11Window.h53 Window mWindow; variable
/external/angle/src/libANGLE/renderer/gl/glx/
DWindowSurfaceGLX.cpp32 mWindow(0), in WindowSurfaceGLX()
50 if (mUseChildWindow && mWindow) in ~WindowSurfaceGLX()
57 XDestroyWindow(mDisplay, mWindow); in ~WindowSurfaceGLX()
124 mWindow = XCreateWindow(mDisplay, mParent, 0, 0, mParentWidth, mParentHeight, 0, in initialize()
128 mGLXWindow = mGLX.createWindow(mFBConfig, (mUseChildWindow ? mWindow : mParent), nullptr); in initialize()
132 XMapWindow(mDisplay, mWindow); in initialize()
271 XResizeWindow(mDisplay, mWindow, mParentWidth, mParentHeight); in checkForResize()
DWindowSurfaceGLX.h66 Window mWindow; variable
/external/angle/src/libANGLE/renderer/gl/wgl/
DWindowSurfaceWGL.cpp26 mWindow(window), in WindowSurfaceWGL()
37 ReleaseDC(mWindow, mDeviceContext); in ~WindowSurfaceWGL()
43 mDeviceContext = GetDC(mWindow); in initialize()
152 if (!GetClientRect(mWindow, &rect)) in getWidth()
162 if (!GetClientRect(mWindow, &rect)) in getHeight()
DDXGISwapChainWindowSurfaceWGL.cpp35 mWindow(window), in DXGISwapChainWindowSurfaceWGL()
95 if (!GetClientRect(mWindow, &rect)) in initialize()
344 if (!GetClientRect(mWindow, &rect)) in checkForResize()
449 result = dxgiFactory2->CreateSwapChainForHwnd(mDevice, mWindow, &swapChainDesc, nullptr, in createSwapChain()
476 swapChainDesc.OutputWindow = mWindow; in createSwapChain()
DDisplayWGL.cpp99 mWindow(nullptr), in DisplayWGL()
236 mWindow = CreateWindowExA(0, reinterpret_cast<const char *>(mWindowClass), in initializeImpl()
240 if (!mWindow) in initializeImpl()
245 mDeviceContext = GetDC(mWindow); in initializeImpl()
363 ReleaseDC(mWindow, mDeviceContext); in destroy()
367 if (mWindow) in destroy()
369 DestroyWindow(mWindow); in destroy()
370 mWindow = nullptr; in destroy()
DWindowSurfaceWGL.h58 HWND mWindow; variable
DDXGISwapChainWindowSurfaceWGL.h72 EGLNativeWindowType mWindow; variable
DDisplayWGL.h133 HWND mWindow; variable
/external/angle/src/tests/egl_tests/
DEGLRobustnessTest.cpp86 mWindow = in testSetUp()
94 eglDestroySurface(mDisplay, mWindow); in testTearDown()
111 eglMakeCurrent(mDisplay, mWindow, mWindow, mContext); in createContext()
162 EGLSurface mWindow = EGL_NO_SURFACE; member in EGLRobustnessTest
/external/angle/util/windows/
DWGLWindow.cpp66 mWindow(nullptr) in WGLWindow()
95 mWindow = osWindow->getNativeWindow(); in initializeGL()
96 mDeviceContext = GetDC(mWindow); in initializeGL()
199 ReleaseDC(mWindow, mDeviceContext); in destroyGL()
DWGLWindow.h52 HWND mWindow; variable
/external/angle/src/libANGLE/renderer/d3d/
DNativeWindowD3D.h31 inline EGLNativeWindowType getNativeWindow() const { return mWindow; } in getNativeWindow()
34 EGLNativeWindowType mWindow;
DNativeWindowD3D.cpp15 NativeWindowD3D::NativeWindowD3D(EGLNativeWindowType window) : mWindow(window) {} in NativeWindowD3D()
/external/angle/src/libANGLE/renderer/gl/egl/
DWindowSurfaceEGL.cpp21 : SurfaceEGL(state, egl, config), mWindow(window) in WindowSurfaceEGL()
36 mSurface = mEGL->createWindowSurface(mConfig, mWindow, nativeAttribs.data()); in initialize()
DWindowSurfaceEGL.h31 EGLNativeWindowType mWindow;