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

  /external/deqp/framework/platform/win32/
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 121 EGLNativeWindowType getLegacyNative (void) { return m_window.getHandle(); }
130 Win32Window m_window; member in class:tcu::__anon7405::NativeWindow
234 , m_window (instance,
249 m_window.setVisible(false);
256 m_window.setVisible(true);
272 return m_window.getSize();
277 m_window.processEvents();
282 m_window.setSize(size.x(), size.y());
304 TCU_CHECK(GetClientRect(m_window.getHandle(), &rect));
317 windowDC = GetDC(m_window.getHandle())
    [all...]
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
tcuWGLContextFactory.cpp 80 Win32Window m_window; member in class:tcu::__anon7403::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/deqp/framework/platform/X11/
tcuX11.cpp 127 , m_window (None)
170 m_window = XCreateWindow(dpy, root, 0, 0, width, height, 0,
172 TCU_CHECK(m_window);
175 XSetWMProtocols(dpy, m_window, &deleteAtom, 1);
189 XMapWindow(dpy, m_window);
194 XUnmapWindow(dpy, m_window);
199 XSelectInput(dpy, m_window, ExposureMask | StructureNotifyMask);
215 XGetGeometry(m_display.getXDisplay(), m_window, &root, &x, &y, &width_, &height_, &borderWidth, &depth);
229 XConfigureWindow(m_display.getXDisplay(), m_window, mask, &changes);
240 XDestroyWindow(m_display.getXDisplay(), m_window);
    [all...]
tcuX11EglPlatform.cpp 135 eglw::EGLNativeWindowType getLegacyNative (void) { return reinterpret_cast<eglw::EGLNativeWindowType>(m_window.getXID()); }
136 void* getPlatformNative (void) { return &m_window.getXID(); }
143 x11::Window m_window; member in class:tcu::x11::egl::Window
148 , m_window (display.getX11Display(), params.width, params.height, visual)
150 m_window.setVisibility((params.visibility != WindowParams::VISIBILITY_HIDDEN));
156 m_window.getDimensions(&ret.x(), &ret.y());
162 m_window.setDimensions(size.x(), size.y());
tcuX11.hpp 93 ::Window& getXID (void) { return m_window; }
102 ::Window m_window; member in class:tcu::x11::Window
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.cpp 80 virtual EGLNativeWindowType getLegacyNative (void) { return m_window->getNativeWindow(); }
81 IVec2 getScreenSize (void) const { return m_window->getSize(); }
88 Window* m_window; member in class:tcu::Android::NativeWindow
111 , m_window (window)
120 m_window->release();
125 if (m_window->isPendingDestroy())
131 m_window->setBuffersGeometry(size.x() != eglu::WindowParams::SIZE_DONT_CARE ? size.x() : 0,
tcuAndroidWindow.hpp 66 ANativeWindow* getNativeWindow (void) { return m_window; }
76 ANativeWindow* m_window; member in class:tcu::Android::Window
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
  /external/deqp/framework/egl/
egluGLContextFactory.cpp 149 NativeWindow* m_window; member in class:eglu::__anon7351::RenderContext
166 , m_window (DE_NULL)
199 delete m_window;
329 m_window = windowSurface.first;
451 delete m_window;
456 m_window = DE_NULL;
466 if (m_window)
477 m_window->processEvents();
487 delete m_window;
488 m_window = DE_NULL
    [all...]
  /external/deqp/modules/egl/
teglPreservingSwapTests.cpp 92 eglu::NativeWindow* m_window; member in class:deqp::egl::__anon7465::PreservingSwapTest
288 , m_window (DE_NULL)
333 m_window = factory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_eglDisplay, config, DE_NULL, eglu::WindowParams(480, 480, eglu::parseWindowVisibility(m_testCtx.getCommandLine())));
334 m_eglSurface = eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *m_window, m_eglDisplay, config, DE_NULL);
401 delete m_window;
402 m_window = DE_NULL;
teglImageFormatTests.cpp 876 eglu::NativeWindow* m_window; member in class:deqp::egl::Image::ImageFormatCase
907 , m_window (DE_NULL)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorActionBarAdvisor.java 78 MenuManager windowMenu = new MenuManager("&Window", IWorkbenchActionConstants.M_WINDOW);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 604 milliseconds