Lines Matching refs:EmulatedANativeWindow
21 EmulatedANativeWindow::EmulatedANativeWindow( in EmulatedANativeWindow() function in gfxstream::EmulatedANativeWindow
33 EGLNativeWindowType EmulatedANativeWindow::asEglNativeWindowType() { in asEglNativeWindowType()
37 uint32_t EmulatedANativeWindow::getWidth() const { return mWidth; } in getWidth()
39 uint32_t EmulatedANativeWindow::getHeight() const { return mHeight; } in getHeight()
41 int EmulatedANativeWindow::getFormat() const { return mFormat; } in getFormat()
43 int EmulatedANativeWindow::queueBuffer(EGLClientBuffer buffer, int fence) { in queueBuffer()
54 int EmulatedANativeWindow::dequeueBuffer(EGLClientBuffer* buffer, int* fence) { in dequeueBuffer()
63 int EmulatedANativeWindow::cancelBuffer(EGLClientBuffer buffer) { in cancelBuffer()
74 void EmulatedANativeWindow::acquire() { ++mRefCount; } in acquire()
76 void EmulatedANativeWindow::release() { in release()
96 auto* anw = reinterpret_cast<EmulatedANativeWindow*>(window); in acquire()
101 auto* anw = reinterpret_cast<EmulatedANativeWindow*>(window); in release()
123 auto anw = reinterpret_cast<EmulatedANativeWindow*>(window); in getWidth()
128 auto anw = reinterpret_cast<EmulatedANativeWindow*>(window); in getHeight()
157 auto anw = reinterpret_cast<EmulatedANativeWindow*>(window); in queueBuffer()
163 auto anw = reinterpret_cast<EmulatedANativeWindow*>(window); in dequeueBuffer()
168 auto anw = reinterpret_cast<EmulatedANativeWindow*>(window); in cancelBuffer()
190 …new EmulatedANativeWindow(width, height, GFXSTREAM_AHB_FORMAT_R8G8B8A8_UNORM, std::move(buffers))); in createNativeWindowForTesting()