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

  /external/chromium_org/ui/ozone/public/
native_pixmap.h 14 class NativePixmap : public base::RefCounted<NativePixmap> {
16 NativePixmap() {}
22 virtual ~NativePixmap() {}
24 friend class base::RefCounted<NativePixmap>;
26 DISALLOW_COPY_AND_ASSIGN(NativePixmap);
  /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, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const;
86 NativePixmap::Capability getCapabilities (void) const { return m_capabilities;
    [all...]
egluNativePixmap.cpp 29 // NativePixmap
31 NativePixmap::NativePixmap (Capability capabilities)
36 EGLNativePixmapType NativePixmap::getLegacyNative (void)
39 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePixmapSurface()", DE_NULL, __FILE__, __LINE__);
42 void* NativePixmap::getPlatformNative (void)
45 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support eglCreatePlatformPixmapSurface()", DE_NULL, __FILE__, __LINE__);
48 void NativePixmap::readPixels (tcu::TextureLevel*)
51 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support readPixels", DE_NULL, __FILE__, __LINE__);
56 NativePixmapFactory::NativePixmapFactory (const std::string& name, const std::string& description, NativePixmap::Capability capabilities
    [all...]
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.cpp 47 static const eglu::NativePixmap::Capability BITMAP_CAPABILITIES = eglu::NativePixmap::CAPABILITY_CREATE_SURFACE_LEGACY;
76 virtual eglu::NativePixmap* createPixmap (eglu::NativeDisplay* nativeDisplay, int width, int height) const;
77 virtual eglu::NativePixmap* createPixmap (eglu::NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const;
80 class NativePixmap : public eglu::NativePixmap
83 NativePixmap (NativeDisplay* nativeDisplay, int width, int height, int bitDepth);
84 virtual ~NativePixmap (void);
132 // NativePixmap
134 NativePixmap::NativePixmap (NativeDisplay* nativeDisplay, int width, int height, int bitDepth
    [all...]

Completed in 108 milliseconds