Home
last modified time | relevance | path

Searched refs:mPixmap (Results 1 – 4 of 4) sorted by relevance

/external/angle/src/tests/gl_tests/
DPixmapTest.cpp80 mPixmap = eglCreatePixmapSurface(window->getDisplay(), window->getConfig(), in testSetUp()
82 ASSERT_NE(mPixmap, EGL_NO_SURFACE); in testSetUp()
93 if (mPixmap) in testTearDown()
96 eglDestroySurface(window->getDisplay(), mPixmap); in testTearDown()
106 EGLSurface mPixmap = EGL_NO_SURFACE; member in PixmapTest
130 eglMakeCurrent(window->getDisplay(), mPixmap, mPixmap, window->getContext()); in TEST_P()
161 eglMakeCurrent(window->getDisplay(), mPixmap, mPixmap, window->getContext()); in TEST_P()
185 eglBindTexImage(window->getDisplay(), mPixmap, EGL_BACK_BUFFER); in TEST_P()
197 eglReleaseTexImage(window->getDisplay(), mPixmap, EGL_BACK_BUFFER); in TEST_P()
216 eglMakeCurrent(window->getDisplay(), mPixmap, mPixmap, window->getContext()); in TEST_P()
[all …]
/external/angle/util/x11/
DX11Pixmap.cpp11 X11Pixmap::X11Pixmap() : mPixmap(0), mDisplay(nullptr) {} in X11Pixmap()
15 if (mPixmap) in ~X11Pixmap()
17 XFreePixmap(mDisplay, mPixmap); in ~X11Pixmap()
43 mPixmap = XCreatePixmap(mDisplay, root, static_cast<unsigned int>(width), in initialize()
46 return mPixmap != 0; in initialize()
51 return mPixmap; in getNativePixmap()
DX11Pixmap.h31 Pixmap mPixmap;
/external/angle/src/tests/deqp_support/
DtcuANGLENativeDisplayFactory.cpp140 OSPixmap *mPixmap; member in tcu::__anonb65af0d50111::NativePixmap
197 : eglu::NativePixmap(kBitmapCapabilities), mPixmap(CreateOSPixmap()) in NativePixmap()
202 if (!mPixmap) in NativePixmap()
207 if (!mPixmap->initialize(display, width, height, bitDepth)) in NativePixmap()
216 delete mPixmap; in ~NativePixmap()
221 return reinterpret_cast<eglw::EGLNativePixmapType>(mPixmap->getNativePixmap()); in getLegacyNative()