HomeSort by relevance Sort by last modified time
    Searched refs:m_window (Results 1 - 24 of 24) sorted by null

  /external/deqp/framework/platform/win32/
tcuWin32Window.hpp 46 HWND getHandle (void) const { return m_window; }
47 HDC getDeviceContext (void) const { return GetDC(m_window); }
50 HWND m_window; member in class:tcu::Win32Window
tcuWin32Window.cpp 39 : m_window (DE_NULL)
63 m_window = CreateWindow(s_className, s_windowName,
69 if (!m_window)
73 SetWindowLongPtr(m_window, GWLP_USERDATA, (LONG_PTR)this);
79 if (m_window)
80 DestroyWindow(m_window);
88 if (m_window)
91 SetWindowLongPtr(m_window, GWLP_USERDATA, 0);
94 DestroyWindow(m_window);
99 ShowWindow(m_window, visible ? SW_SHOW : SW_HIDE)
    [all...]
tcuWin32EGLNativeDisplayFactory.cpp 110 EGLNativeWindowType getLegacyNative (void) { return m_window.getHandle(); }
119 Win32Window m_window; member in class:tcu::__anon24393::NativeWindow
219 , m_window (instance,
234 m_window.setVisible(false);
241 m_window.setVisible(true);
257 return m_window.getSize();
262 m_window.processEvents();
267 m_window.setSize(size.x(), size.y());
289 TCU_CHECK(GetClientRect(m_window.getHandle(), &rect));
302 windowDC = GetDC(m_window.getHandle())
    [all...]
tcuWGLContextFactory.cpp 80 Win32Window m_window; member in class:tcu::__anon24391::WGLContext
89 , m_window (instance,
98 HDC deviceCtx = m_window.getDeviceContext();
115 const IVec2 size = m_window.getSize();
132 m_window.setVisible(config.windowVisibility != glu::RenderConfig::VISIBILITY_HIDDEN);
149 m_window.processEvents();
tcuWin32GLES3Platform.cpp 74 Win32Window m_window; member in class:tcu::Win32GLES3Context
88 , m_window (instance, m_renderTarget.getWidth(), m_renderTarget.getHeight())
91 const HDC deviceCtx = m_window.getDeviceContext();
97 m_platformCtx.context = new wgl::Context(&wgl, m_window.getDeviceContext(), wgl::PROFILE_COMPATIBILITY, 3, 3, pixelFormat);
108 m_window.setVisible(config.windowVisibility != glu::RenderConfig::VISIBILITY_HIDDEN);
112 const IVec2 size = m_window.getSize();
  /external/chromium_org/third_party/WebKit/Source/core/events/
WindowEventContext.cpp 49 m_window = toDocument(topLevelContainer)->domWindow();
55 if (!m_window)
60 m_window->fireEventListeners(event);
WindowEventContext.h 51 RefPtrWillBeMember<LocalDOMWindow> m_window; member in class:blink::WindowEventContext
57 return m_window.get();
  /external/deqp/framework/platform/android/
tcuAndroidWindow.hpp 66 ANativeWindow* getNativeWindow (void) { return m_window; }
76 ANativeWindow* m_window; member in class:tcu::Android::Window
tcuAndroidPlatform.cpp 65 virtual EGLNativeWindowType getLegacyNative (void) { return m_window->getNativeWindow(); }
66 IVec2 getScreenSize (void) const { return m_window->getSize(); }
73 Window* m_window; member in class:tcu::Android::NativeWindow
96 , m_window (window)
105 m_window->release();
110 if (m_window->isPendingDestroy())
116 m_window->setBuffersGeometry(size.x() != eglu::WindowParams::SIZE_DONT_CARE ? size.x() : 0,
tcuAndroidWindow.cpp 36 : m_window (window)
47 ANativeWindow_setBuffersGeometry(m_window, width, height, format);
52 const int32_t width = ANativeWindow_getWidth(m_window);
53 const int32_t height = ANativeWindow_getHeight(m_window);
tcuAndroidRenderActivity.cpp 78 , m_window (DE_NULL)
147 m_window = message.payload.window;
151 if (m_window != message.payload.window)
168 if (m_window != message.payload.window)
178 m_window = DE_NULL;
tcuAndroidRenderActivity.hpp 158 ANativeWindow* m_window; member in class:tcu::Android::RenderThread
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.h 43 m_window(window),
49 NativeWindowType m_window; member in class:RendererSurface
RendererSurface.cpp 105 nw->destroyNativeWindow(nw->getNativeDisplay(), m_window);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DOMWindowIndexedDatabase.h 57 LocalDOMWindow& m_window; member in class:blink::FINAL
DOMWindowIndexedDatabase.cpp 38 , m_window(window)
85 Document* document = m_window.document();
93 if (!m_window.isCurrentlyDisplayedInFrame())
  /external/deqp/framework/platform/X11/
tcuX11.cpp 127 , m_window (None)
161 m_window = XCreateWindow(dpy, root, 0, 0, width, height, 0,
163 TCU_CHECK(m_window);
166 XSetWMProtocols(dpy, m_window, &deleteAtom, 1);
181 XMapWindow(dpy, m_window);
186 XUnmapWindow(dpy, m_window);
191 XSelectInput(dpy, m_window, ExposureMask | StructureNotifyMask);
207 XGetGeometry(m_display.getXDisplay(), m_window, &root, &x, &y, &width_, &height_, &borderWidth, &depth);
221 XConfigureWindow(m_display.getXDisplay(), m_window, mask, &changes);
232 XDestroyWindow(m_display.getXDisplay(), m_window);
    [all...]
tcuX11.hpp 93 ::Window& getXID (void) { return m_window; }
102 ::Window m_window; member in class:tcu::x11::Window
tcuX11EglPlatform.cpp 92 EGLNativeWindowType getLegacyNative (void) { return m_window.getXID(); }
93 void* getPlatformNative (void) { return &m_window.getXID(); }
99 x11::Window m_window; member in class:tcu::x11::egl::Window
104 , m_window (display.getX11Display(), params.width, params.height, visual)
106 m_window.setVisibility((params.visibility != WindowParams::VISIBILITY_HIDDEN));
112 m_window.getDimensions(&ret.x(), &ret.y());
118 m_window.setDimensions(size.x(), size.y());
  /external/deqp/framework/egl/
egluGLContextFactory.cpp 153 NativeWindow* m_window; member in class:eglu::__anon24344::RenderContext
170 , m_window (DE_NULL)
203 delete m_window;
510 m_window = windowSurface.first;
630 delete m_window;
635 m_window = DE_NULL;
643 if (m_window)
654 m_window->processEvents();
664 delete m_window;
665 m_window = DE_NULL
    [all...]
  /external/deqp/modules/egl/
teglPreservingSwapTests.cpp 86 eglu::NativeWindow* m_window; member in class:deqp::egl::__anon24454::PreservingSwapTest
331 , m_window (DE_NULL)
380 m_window = m_eglTestCtx.createNativeWindow(m_eglTestCtx.getDisplay().getEGLDisplay(), config, DE_NULL, 480, 480, eglu::parseWindowVisibility(m_testCtx.getCommandLine()));
381 m_eglSurface = new tcu::egl::WindowSurface(m_eglTestCtx.getDisplay(), eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *m_window, m_eglTestCtx.getDisplay().getEGLDisplay(), config, DE_NULL));
427 delete m_window;
428 m_window = DE_NULL;
teglImageTests.cpp 242 , m_window (DE_NULL)
262 m_window = eglTestCtx.createNativeWindow(dpy.getEGLDisplay(), m_config, DE_NULL, width, height, eglu::parseWindowVisibility(eglTestCtx.getTestContext().getCommandLine()));
263 m_surface = new tcu::egl::WindowSurface(dpy, eglu::createWindowSurface(eglTestCtx.getNativeDisplay(), *m_window, dpy.getEGLDisplay(), m_config, DE_NULL));
280 delete m_window;
346 eglu::NativeWindow* m_window; member in class:deqp::egl::Image::GLES2Context
teglImageFormatTests.cpp 1620 eglu::NativeWindow* m_window; member in class:deqp::egl::Image::ImageFormatCase
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalDOMWindow.cpp 124 , m_window(&window)
150 m_window->postMessageTimerFired(this);
158 LocalDOMWindow* m_window; member in class:blink::FINAL
    [all...]

Completed in 863 milliseconds