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

  /external/deqp/modules/egl/
teglNativeColorMappingTests.cpp 366 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)
369 eglu::UniqueSurface surface (egl, display, eglu::createPixmapSurface(nativeDisplay, nativePixmap, display, config, DE_NULL));
389 nativePixmap.readPixels(&result);
407 bool testNativePixmapCopy (TestLog& log, const Library& egl, eglu::NativePixmap& nativePixmap, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor, size_t colorCount, const tcu::Vec4* colors)
428 EGLU_CHECK_CALL(egl, copyBuffers(display, *surface, nativePixmap.getLegacyNative()));
430 nativePixmap.readPixels(&result);
504 if ((pixmapFactory->getCapabilities() & eglu::NativePixmap::CAPABILITY_READ_PIXELS) == 0)
509 if ((pixmapFactory->getCapabilities() & eglu::NativePixmap::CAPABILITY_READ_PIXELS) == 0 |
    [all...]
teglNativeCoordMappingTests.cpp 413 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)
421 eglu::UniqueSurface surface (egl, display, eglu::createPixmapSurface(nativeDisplay, nativePixmap, display, config, DE_NULL));
441 nativePixmap.readPixels(&result);
458 bool testNativePixmapCopy (TestLog& log, const Library& egl, eglu::NativePixmap& nativePixmap, int width, int height, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor)
484 EGLU_CHECK_CALL(egl, copyBuffers(display, *surface, nativePixmap.getLegacyNative()));
486 nativePixmap.readPixels(&result);
537 if ((pixmapFactory->getCapabilities() & eglu::NativePixmap::CAPABILITY_READ_PIXELS) == 0)
542 if ((pixmapFactory->getCapabilities() & eglu::NativePixmap::CAPABILITY_READ_PIXELS) == 0 |
    [all...]
  /external/deqp/framework/egl/
egluGLContextFactory.cpp 150 NativePixmap* m_pixmap;
221 typedef std::pair<NativePixmap*, EGLSurface> PixmapSurfacePair;
251 NativePixmap* nativePixmap = DE_NULL;
255 nativePixmap = pixmapFactory->createPixmap(nativeDisplay, eglDisplay, eglConfig, &attribList[0], width, height);
259 surface = eglu::createPixmapSurface(*nativeDisplay, *nativePixmap, eglDisplay, eglConfig, attribList);
263 delete nativePixmap;
267 return PixmapSurfacePair(nativePixmap, surface);
  /frameworks/native/opengl/libagl/
egl.cpp 656 virtual EGLint getWidth() const { return nativePixmap.width; }
657 virtual EGLint getHeight() const { return nativePixmap.height; }
659 egl_native_pixmap_t nativePixmap;
666 : egl_surface_t(dpy, config, depthFormat), nativePixmap(*pixmap)
689 buffer.width = nativePixmap.width;
690 buffer.height = nativePixmap.height;
691 buffer.stride = nativePixmap.stride;
692 buffer.data = nativePixmap.data;
693 buffer.format = nativePixmap.format;
704 buffer.width = nativePixmap.width
    [all...]

Completed in 737 milliseconds