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

1 2

  /external/deqp/framework/platform/win32/
tcuWin32Window.hpp 48 HWND getHandle (void) const { return m_window; }
49 HDC getDeviceContext (void) const { return GetDC(m_window); }
55 HWND m_window; member in class:tcu::win32::Window
tcuWin32Window.cpp 41 : m_window (DE_NULL)
65 m_window = CreateWindow(s_className, s_windowName,
71 if (!m_window)
75 SetWindowLongPtr(m_window, GWLP_USERDATA, (LONG_PTR)this);
81 if (m_window)
82 DestroyWindow(m_window);
90 if (m_window)
93 SetWindowLongPtr(m_window, GWLP_USERDATA, 0);
96 DestroyWindow(m_window);
101 ShowWindow(m_window, visible ? SW_SHOW : SW_HIDE)
    [all...]
tcuWGLContextFactory.cpp 82 win32::Window m_window; member in class:tcu::wgl::__anon16985::WGLContext
91 , m_window (instance,
100 HDC deviceCtx = m_window.getDeviceContext();
117 const IVec2 size = m_window.getSize();
134 m_window.setVisible(config.windowVisibility != glu::RenderConfig::VISIBILITY_HIDDEN);
151 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();
tcuWin32EGLNativeDisplayFactory.cpp 123 EGLNativeWindowType getLegacyNative (void) { return m_window.getHandle(); }
132 win32::Window m_window; member in class:tcu::win32::__anon16987::NativeWindow
236 , m_window (instance,
251 m_window.setVisible(false);
258 m_window.setVisible(true);
274 return m_window.getSize();
279 m_window.processEvents();
284 m_window.setSize(size.x(), size.y());
306 TCU_CHECK(GetClientRect(m_window.getHandle(), &rect));
319 windowDC = GetDC(m_window.getHandle())
    [all...]
tcuWin32VulkanPlatform.cpp 56 , m_window (window)
62 m_window->setSize((int)newSize.x(), (int)newSize.y());
66 UniquePtr<win32::Window> m_window; member in class:tcu::win32::VulkanWindow
  /external/deqp/framework/platform/android/
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);
77 ANativeWindow_setBuffersGeometry(m_window, 0, 0, 0);
tcuAndroidPlatform.cpp 83 virtual EGLNativeWindowType getLegacyNative (void) { return m_window->getNativeWindow(); }
84 IVec2 getScreenSize (void) const { return m_window->getSize(); }
91 Window* m_window; member in class:tcu::Android::NativeWindow
114 , m_window (window)
123 m_window->release();
128 if (m_window->isPendingDestroy())
134 m_window->setBuffersGeometry(size.x() != eglu::WindowParams::SIZE_DONT_CARE ? size.x() : 0,
216 , m_window (window)
222 m_window.release();
226 tcu::Android::Window& m_window; member in class:tcu::Android::VulkanWindow
    [all...]
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;
  /external/deqp/framework/platform/lnx/X11/
tcuLnxX11Xcb.cpp 64 m_window = xcb_generate_id(connection);
76 m_window, // window Id
92 m_window,
105 xcb_destroy_window(m_display.getConnection(), m_window);
114 xcb_map_window(m_display.getConnection(), m_window);
116 xcb_unmap_window(m_display.getConnection(), m_window);
132 geom = xcb_get_geometry_reply(m_display.getConnection(), xcb_get_geometry(m_display.getConnection(), m_window), NULL);
143 result = xcb_configure_window(display, m_window, XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT, values);
tcuLnxX11Xcb.hpp 66 xcb_window_t& getXID (void) { return m_window; }
75 xcb_window_t m_window; member in class:tcu::lnx::x11::XcbWindow
tcuLnxX11.cpp 130 , m_window (None)
172 m_window = XCreateWindow(dpy, root, 0, 0, width, height, 0,
174 TCU_CHECK(m_window);
177 XSetWMProtocols(dpy, m_window, &deleteAtom, 1);
192 XMapWindow(dpy, m_window);
197 XUnmapWindow(dpy, m_window);
202 XSelectInput(dpy, m_window, ExposureMask | StructureNotifyMask);
206 XWindowEvent(dpy, m_window, ExposureMask | StructureNotifyMask, &event);
218 XGetGeometry(m_display.getXDisplay(), m_window, &root, &x, &y, &width_, &height_, &borderWidth, &depth);
233 XConfigureWindow(dpy, m_window, mask, &changes)
    [all...]
tcuLnxX11.hpp 114 ::Window& getXID (void) { return m_window; }
122 ::Window m_window; member in class:tcu::lnx::x11::XlibWindow
tcuLnxX11EglDisplayFactory.cpp 140 eglw::EGLNativeWindowType getLegacyNative (void) { return reinterpret_cast<eglw::EGLNativeWindowType>(m_window.getXID()); }
141 void* getPlatformNative (void) { return &m_window.getXID(); }
148 XlibWindow m_window; member in class:tcu::lnx::x11::egl::Window
153 , m_window (display.getX11Display(), params.width, params.height, visual)
155 m_window.setVisibility((params.visibility != WindowParams::VISIBILITY_HIDDEN));
161 m_window.getDimensions(&ret.x(), &ret.y());
167 m_window.setDimensions(size.x(), size.y());
  /external/deqp/framework/platform/lnx/wayland/
tcuLnxWayland.cpp 154 m_window = wl_egl_window_create(m_surface, width, height);
155 if (!m_window)
162 TCU_CHECK(m_window);
172 wl_egl_window_get_attached_size(m_window, width, height);
177 wl_egl_window_resize(m_window, width, height, 0, 0);
207 if (m_window)
208 wl_egl_window_destroy(m_window);
tcuLnxWayland.hpp 83 void* getWindow (void) { return m_window; }
91 struct wl_egl_window* m_window; member in class:tcu::lnx::wayland::Window
tcuLnxWaylandEglDisplayFactory.cpp 94 eglw::EGLNativeWindowType getLegacyNative (void) { return reinterpret_cast<eglw::EGLNativeWindowType>(m_window.getWindow()); }
100 wayland::Window m_window; member in class:tcu::lnx::wayland::egl::Window
105 , m_window (display.getWaylandDisplay(), params.width, params.height)
112 m_window.getDimensions(&ret.x(), &ret.y());
118 m_window.setDimensions(size.x(), size.y());
  /external/deqp/framework/platform/lnx/
tcuLnxVulkanPlatform.cpp 61 , m_window (window)
67 m_window->setDimensions((int)newSize.x(), (int)newSize.y());
71 UniquePtr<x11::XlibWindow> m_window; member in class:tcu::lnx::VulkanWindowXlib
104 , m_window (window)
110 m_window->setDimensions((int)newSize.x(), (int)newSize.y());
114 UniquePtr<x11::XcbWindow> m_window; member in class:tcu::lnx::VulkanWindowXcb
145 , m_window (window)
151 m_window->setDimensions((int)newSize.x(), (int)newSize.y());
155 UniquePtr<wayland::Window> m_window; member in class:tcu::lnx::VulkanWindowWayland
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/
OGLES2HelloAPI_OSX.mm 47 NSWindow* m_window; // Our window
489 m_window = [[NSWindow alloc] initWithContentRect:frame styleMask:NSMiniaturizableWindowMask | NSTitledWindowMask | NSClosableWindowMask
492 if(!m_window)
498 [m_window setTitle:@"OGLES2HelloAPI"];
504 [m_window setContentView:m_view];
505 [m_window makeKeyAndOrderFront:nil];
509 object:m_window];
683 [m_window release];
684 m_window = nil;
  /external/deqp/modules/egl/
teglMutableRenderBufferTests.cpp 68 eglu::NativeWindow* m_window; member in class:deqp::egl::__anon17049::MutableRenderBufferTest
81 , m_window (DE_NULL)
151 m_window = factory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_eglDisplay, m_eglConfig, DE_NULL,
153 m_eglSurface = eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *m_window, m_eglDisplay, m_eglConfig, DE_NULL);
195 if (m_window != DE_NULL)
197 delete m_window;
198 m_window = DE_NULL;
teglSwapBuffersWithDamageTests.cpp 280 eglu::NativeWindow* m_window; member in class:deqp::egl::__anon17068::SwapBuffersWithDamageTest
295 , m_window (DE_NULL)
365 delete m_window;
366 m_window = DE_NULL;
372 m_window = factory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_eglDisplay, config, DE_NULL,
374 m_eglSurface = eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *m_window, m_eglDisplay, config, DE_NULL);
426 m_window->setSurfaceSize(IVec2(width*2, height/2));
428 m_window->setSurfaceSize(IVec2(height/2, width*2));
436 m_window->setSurfaceSize(IVec2(width*2, height/2));
438 m_window->setSurfaceSize(IVec2(height/2, width*2))
    [all...]
teglBufferAgeTests.cpp 116 eglu::NativeWindow* m_window; member in class:deqp::egl::__anon17025::BufferAgeTest
375 , m_window (DE_NULL)
440 delete m_window;
441 m_window = DE_NULL;
447 m_window = factory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_eglDisplay, config, DE_NULL,
449 m_eglSurface = eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *m_window, m_eglDisplay, config, DE_NULL);
553 m_window->setSurfaceSize(IVec2(width*2, height/2));
555 m_window->setSurfaceSize(IVec2(height/2, width*2));
563 m_window->setSurfaceSize(IVec2(width*2, height/2));
565 m_window->setSurfaceSize(IVec2(height/2, width*2))
    [all...]
teglNegativePartialUpdateTests.cpp 75 NativeWindow* m_window; member in class:deqp::egl::__anon17052::NegativePartialUpdateTest
137 , m_window (DE_NULL)
170 m_window = factory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_eglDisplay, m_eglConfig, DE_NULL,
172 m_eglSurface = createWindowSurface(m_eglTestCtx.getNativeDisplay(), *m_window, m_eglDisplay, m_eglConfig, DE_NULL);
200 delete m_window;
201 m_window = DE_NULL;
  /external/deqp/framework/egl/
egluGLContextFactory.cpp 149 NativeWindow* m_window; member in class:eglu::__anon16925::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...]

Completed in 525 milliseconds

1 2