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

1 2

  /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);
surface_ozone_egl.h 19 class NativePixmap;
surface_factory_ozone.h 23 class NativePixmap;
125 virtual scoped_refptr<NativePixmap> CreateNativePixmap(
143 scoped_refptr<NativePixmap> buffer,
surface_factory_ozone.cc 67 scoped_refptr<ui::NativePixmap> SurfaceFactoryOzone::CreateNativePixmap(
77 scoped_refptr<NativePixmap> buffer,
  /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...]
egluUtil.hpp 43 class NativePixmap;
58 EGLSurface createPixmapSurface (NativeDisplay& nativeDisplay, NativePixmap& pixmap, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList);
egluNativeWindow.hpp 39 class NativePixmap;
egluUtil.cpp 256 EGLSurface createPixmapSurface (NativeDisplay& nativeDisplay, NativePixmap& pixmap, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList)
258 const bool supportsLegacyCreate = (pixmap.getCapabilities() & NativePixmap::CAPABILITY_CREATE_SURFACE_LEGACY) != 0;
259 const bool supportsPlatformCreate = (pixmap.getCapabilities() & NativePixmap::CAPABILITY_CREATE_SURFACE_PLATFORM) != 0;
egluGLContextFactory.cpp 154 NativePixmap* m_pixmap;
319 typedef std::pair<NativePixmap*, EGLSurface> PixmapSurfacePair;
349 NativePixmap* nativePixmap = DE_NULL;
353 nativePixmap = pixmapFactory->createPixmap(nativeDisplay, eglDisplay, eglConfig, &attribList[0], width, height);
357 surface = eglu::createPixmapSurface(*nativeDisplay, *nativePixmap, eglDisplay, eglConfig, attribList);
361 delete nativePixmap;
365 return PixmapSurfacePair(nativePixmap, surface);
  /external/chromium_org/ui/ozone/gpu/
gpu_memory_buffer_factory_ozone_native_buffer.h 20 class NativePixmap;
23 typedef std::map<std::pair<uint32_t, uint32_t>, scoped_refptr<NativePixmap> >
gpu_memory_buffer_factory_ozone_native_buffer.cc 19 bool Initialize(scoped_refptr<NativePixmap> pixmap) {
41 scoped_refptr<NativePixmap> pixmap_;
74 scoped_refptr<NativePixmap> pixmap =
  /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...]
  /external/chromium_org/ui/ozone/platform/dri/
gbm_buffer.h 38 class GbmPixmap : public NativePixmap {
42 // NativePixmap:
gbm_surface_factory.h 38 virtual scoped_refptr<ui::NativePixmap> CreateNativePixmap(
46 scoped_refptr<NativePixmap> buffer,
gbm_surface_factory.cc 171 scoped_refptr<ui::NativePixmap> GbmSurfaceFactory::CreateNativePixmap(
194 scoped_refptr<NativePixmap> buffer,
  /external/deqp/framework/platform/X11/
tcuX11EglPlatform.cpp 45 using eglu::NativePixmap;
169 class Pixmap : public NativePixmap
179 : NativePixmap (CAPABILITIES)
195 NativePixmap* createPixmap (NativeDisplay* nativeDisplay,
200 NativePixmap* PixmapFactory::createPixmap (NativeDisplay* nativeDisplay,
  /external/deqp/modules/egl/
teglTestCase.hpp 41 class NativePixmap;
67 eglu::NativePixmap* createNativePixmap (EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height);
teglCreateSurfaceTests.cpp 89 EGLSurface createPixmapSurface (EGLDisplay display, EGLConfig config, eglu::NativeDisplay& nativeDisplay, eglu::NativePixmap& pixmap, bool useLegacyCreate)
186 if ((m_eglTestCtx.getNativePixmapFactory().getCapabilities() & eglu::NativePixmap::CAPABILITY_CREATE_SURFACE_LEGACY) == 0)
191 if ((m_eglTestCtx.getNativePixmapFactory().getCapabilities() & eglu::NativePixmap::CAPABILITY_CREATE_SURFACE_PLATFORM) == 0)
201 de::UniquePtr<eglu::NativePixmap> pixmap (m_eglTestCtx.createNativePixmap(display.getEGLDisplay(), config, DE_NULL, width, height));
teglNativeColorMappingTests.cpp 360 bool testNativePixmap (TestLog& log, eglu::NativeDisplay& nativeDisplay, eglu::NativePixmap& nativePixmap, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor, size_t colorCount, const tcu::Vec4* colors)
362 eglu::UniqueSurface surface(display, eglu::createPixmapSurface(nativeDisplay, nativePixmap, display, config, DE_NULL));
382 nativePixmap.readPixels(&result);
400 bool testNativePixmapCopy (TestLog& log, eglu::NativePixmap& nativePixmap, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor, size_t colorCount, const tcu::Vec4* colors)
421 TCU_CHECK_EGL_CALL(eglCopyBuffers(display, *surface, nativePixmap.getLegacyNative()));
423 nativePixmap.readPixels(&result);
451 if ((eglTestCtx.getNativePixmapFactory().getCapabilities() & eglu::NativePixmap::CAPABILITY_READ_PIXELS) == 0)
456 if ((eglTestCtx.getNativePixmapFactory().getCapabilities() & eglu::NativePixmap::CAPABILITY_READ_PIXELS) == 0 |
    [all...]
teglNativeCoordMappingTests.cpp 407 bool testNativePixmap (TestLog& log, eglu::NativeDisplay& nativeDisplay, eglu::NativePixmap& nativePixmap, int width, int height, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor)
414 eglu::UniqueSurface surface(display, eglu::createPixmapSurface(nativeDisplay, nativePixmap, display, config, DE_NULL));
434 nativePixmap.readPixels(&result);
451 bool testNativePixmapCopy (TestLog& log, eglu::NativePixmap& nativePixmap, int width, int height, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor)
477 TCU_CHECK_EGL_CALL(eglCopyBuffers(display, *surface, nativePixmap.getLegacyNative()));
479 nativePixmap.readPixels(&result);
506 if ((eglTestCtx.getNativePixmapFactory().getCapabilities() & eglu::NativePixmap::CAPABILITY_READ_PIXELS) == 0)
511 if ((eglTestCtx.getNativePixmapFactory().getCapabilities() & eglu::NativePixmap::CAPABILITY_READ_PIXELS) == 0 |
    [all...]
teglMakeCurrentPerfTests.cpp 96 vector<eglu::NativePixmap*> m_pixmaps;
288 eglu::NativePixmap* pixmap = DE_NULL;
326 for (vector<eglu::NativePixmap*>::iterator iter = m_pixmaps.begin(); iter != m_pixmaps.end(); ++iter)
teglMultiThreadTests.cpp 709 vector<pair<eglu::NativePixmap*, EGLSurface> > m_sharedNativePixmaps;
710 vector<pair<eglu::NativePixmap*, EGLSurface> > m_nativePixmaps0;
711 vector<pair<eglu::NativePixmap*, EGLSurface> > m_nativePixmaps1;
966 vector<pair<eglu::NativePixmap*, EGLSurface> >& pixmaps = (thread.getId() == 0 ? m_nativePixmaps0 : m_nativePixmaps1);
1120 eglu::NativePixmap* pixmap = DE_NULL;
    [all...]
teglTestCase.cpp 224 eglu::NativePixmap* EglTestContext::createNativePixmap (EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height)
teglRenderCase.cpp 172 std::auto_ptr<eglu::NativePixmap> pixmap (m_eglTestCtx.createNativePixmap(display.getEGLDisplay(), config, DE_NULL, width, height));

Completed in 1068 milliseconds

1 2