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

  /external/deqp/framework/egl/
egluNativePixmap.hpp 41 class NativePixmap
51 virtual ~NativePixmap (void) {}
66 NativePixmap (Capability capabilities);
69 NativePixmap (const NativePixmap&);
70 NativePixmap& operator= (const NativePixmap&);
81 virtual NativePixmap* createPixmap (NativeDisplay* nativeDisplay, int width, int height) const = 0;
84 virtual NativePixmap* createPixmap (NativeDisplay* nativeDisplay, eglw::EGLDisplay display, eglw::EGLConfig config, const eglw::EGLAttrib* attribList, int width, int height) const;
86 NativePixmap::Capability getCapabilities (void) const { return m_capabilities;
    [all...]
egluNativePixmap.cpp 31 // NativePixmap
33 NativePixmap::NativePixmap (Capability capabilities)
38 EGLNativePixmapType NativePixmap::getLegacyNative (void)
41 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePixmapSurface()", DE_NULL, __FILE__, __LINE__);
44 void* NativePixmap::getPlatformNative (void)
47 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePlatformPixmapSurface()", DE_NULL, __FILE__, __LINE__);
50 void NativePixmap::readPixels (tcu::TextureLevel*)
53 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support readPixels", DE_NULL, __FILE__, __LINE__);
58 NativePixmapFactory::NativePixmapFactory (const std::string& name, const std::string& description, NativePixmap::Capability capabilities
    [all...]
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.cpp 58 static const eglu::NativePixmap::Capability BITMAP_CAPABILITIES = eglu::NativePixmap::CAPABILITY_CREATE_SURFACE_LEGACY;
89 virtual eglu::NativePixmap* createPixmap (eglu::NativeDisplay* nativeDisplay, int width, int height) const;
90 virtual eglu::NativePixmap* createPixmap (eglu::NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const;
93 class NativePixmap : public eglu::NativePixmap
96 NativePixmap (NativeDisplay* nativeDisplay, int width, int height, int bitDepth);
97 virtual ~NativePixmap (void);
146 // NativePixmap
148 NativePixmap::NativePixmap (NativeDisplay* nativeDisplay, int width, int height, int bitDepth
    [all...]

Completed in 194 milliseconds