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

  /external/deqp/framework/egl/
egluNativeWindow.cpp 31 // NativeWindow
33 NativeWindow::NativeWindow (Capability capabilities)
38 EGLNativeWindowType NativeWindow::getLegacyNative (void)
41 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support eglCreateWindowSurface()", DE_NULL, __FILE__, __LINE__);
44 void* NativeWindow::getPlatformNative (void)
47 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support eglCreatePlatformWindowSurface()", DE_NULL, __FILE__, __LINE__);
50 tcu::IVec2 NativeWindow::getSurfaceSize (void) const
53 throw tcu::NotSupportedError("eglu::NativeWindow doesn't support querying the surface size", DE_NULL, __FILE__, __LINE__);
56 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 51 static const eglu::NativeWindow::Capability WINDOW_CAPABILITIES = (eglu::NativeWindow::Capability)(eglu::NativeWindow::CAPABILITY_CREATE_SURFACE_LEGACY |
52 eglu::NativeWindow::CAPABILITY_SET_SURFACE_SIZE |
53 eglu::NativeWindow::CAPABILITY_GET_SCREEN_SIZE);
77 class NativeWindow : public eglu::NativeWindow
80 NativeWindow (Window* window, int width, int height, int32_t format);
81 virtual ~NativeWindow (void);
101 virtual eglu::NativeWindow* createWindow (eglu::NativeDisplay* nativeDisplay, const eglu::WindowParams& params) const
    [all...]
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.cpp 59 static const eglu::NativeWindow::Capability WINDOW_CAPABILITIES = (eglu::NativeWindow::Capability)
60 (eglu::NativeWindow::CAPABILITY_CREATE_SURFACE_LEGACY |
61 eglu::NativeWindow::CAPABILITY_GET_SURFACE_SIZE |
62 eglu::NativeWindow::CAPABILITY_GET_SCREEN_SIZE |
63 eglu::NativeWindow::CAPABILITY_READ_SCREEN_PIXELS |
64 eglu::NativeWindow::CAPABILITY_SET_SURFACE_SIZE |
65 eglu::NativeWindow::CAPABILITY_CHANGE_VISIBILITY);
111 virtual eglu::NativeWindow* createWindow (eglu::NativeDisplay* nativeDisplay, const eglu::WindowParams& params) const;
117 class NativeWindow : public eglu::NativeWindo
    [all...]

Completed in 66 milliseconds