HomeSort by relevance Sort by last modified time
    Searched defs:NativeWindow (Results 1 - 5 of 5) sorted by null

  /external/deqp/framework/egl/
egluNativeWindow.cpp 29 // NativeWindow
31 NativeWindow::NativeWindow (Capability capabilities)
36 EGLNativeWindowType NativeWindow::getLegacyNative (void)
39 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support eglCreateWindowSurface()", DE_NULL, __FILE__, __LINE__);
42 void* NativeWindow::getPlatformNative (void)
45 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support eglCreatePlatformWindowSurface()", DE_NULL, __FILE__, __LINE__);
48 tcu::IVec2 NativeWindow::getSurfaceSize (void) const
51 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support querying the surface size", DE_NULL, __FILE__, __LINE__);
54 void NativeWindow::setSurfaceSize (tcu::IVec2 size
    [all...]
egluNativeWindow.hpp 73 class NativeWindow
87 virtual ~NativeWindow (void) {}
116 NativeWindow (Capability capabilities);
119 NativeWindow (const NativeWindow&);
120 NativeWindow& operator= (const NativeWindow&);
130 //! Create generic NativeWindow
131 virtual NativeWindow* createWindow (NativeDisplay* nativeDisplay, const WindowParams& params) const = 0;
133 //! Create NativeWindow that matches given config. Defaults to generic createWindow()
    [all...]
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.cpp 37 static const eglu::NativeWindow::Capability WINDOW_CAPABILITIES = (eglu::NativeWindow::Capability)(eglu::NativeWindow::CAPABILITY_CREATE_SURFACE_LEGACY |
38 eglu::NativeWindow::CAPABILITY_SET_SURFACE_SIZE |
39 eglu::NativeWindow::CAPABILITY_GET_SCREEN_SIZE);
59 class NativeWindow : public eglu::NativeWindow
62 NativeWindow (Window* window, int width, int height, int32_t format);
63 virtual ~NativeWindow (void);
83 virtual eglu::NativeWindow* createWindow (eglu::NativeDisplay* nativeDisplay, const eglu::WindowParams& params) const
    [all...]
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.cpp 48 static const eglu::NativeWindow::Capability WINDOW_CAPABILITIES = (eglu::NativeWindow::Capability)
49 (eglu::NativeWindow::CAPABILITY_CREATE_SURFACE_LEGACY |
50 eglu::NativeWindow::CAPABILITY_GET_SURFACE_SIZE |
51 eglu::NativeWindow::CAPABILITY_GET_SCREEN_SIZE |
52 eglu::NativeWindow::CAPABILITY_READ_SCREEN_PIXELS |
53 eglu::NativeWindow::CAPABILITY_SET_SURFACE_SIZE |
54 eglu::NativeWindow::CAPABILITY_CHANGE_VISIBILITY);
98 virtual eglu::NativeWindow* createWindow (eglu::NativeDisplay* nativeDisplay, const eglu::WindowParams& params) const;
104 class NativeWindow : public eglu::NativeWindo
    [all...]
  /external/chromium_org/ui/gfx/
native_widget_types.h 19 // NativeWindow: this is a handle to a native, top-level window
21 // same type as a NativeWindow on some platforms.
115 typedef aura::Window* NativeWindow;
121 typedef UIWindow* NativeWindow;
126 typedef NSWindow* NativeWindow;
132 typedef ui::WindowAndroid* NativeWindow;

Completed in 79 milliseconds