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

  /external/chromium_org/gpu/gles2_conform_support/native/
egl_native.cc 20 EGLNativePixmapType nativePixmap) {
  /external/deqp/modules/egl/
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...]
  /external/deqp/framework/egl/
tcuEgl.cpp 191 PixmapSurface::PixmapSurface (Display& display, EGLConfig config, EGLNativePixmapType nativePixmap, const EGLint* attribList)
194 m_surface = eglCreatePixmapSurface(m_display.getEGLDisplay(), config, nativePixmap, attribList);
tcuEgl.hpp 125 PixmapSurface (Display& display, EGLConfig config, EGLNativePixmapType nativePixmap, const EGLint* attribList);
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);
  /frameworks/native/opengl/libagl/
egl.cpp 653 virtual EGLint getWidth() const { return nativePixmap.width; }
654 virtual EGLint getHeight() const { return nativePixmap.height; }
656 egl_native_pixmap_t nativePixmap;
663 : egl_surface_t(dpy, config, depthFormat), nativePixmap(*pixmap)
679 buffer.width = nativePixmap.width;
680 buffer.height = nativePixmap.height;
681 buffer.stride = nativePixmap.stride;
682 buffer.data = nativePixmap.data;
683 buffer.format = nativePixmap.format;
694 buffer.width = nativePixmap.width
    [all...]

Completed in 553 milliseconds