Home | History | Annotate | Download | only in android

Lines Matching defs:GraphicBuffer

49 	GraphicBufferFunctions& gb = m_functions.graphicBuffer;
133 static android::android_native_base_t* getAndroidNativeBase (android::GraphicBuffer* gb)
175 static android::GraphicBuffer* createGraphicBuffer (const GraphicBufferFunctions& functions, NativeBaseFunctions& baseFunctions, deUint32 w, deUint32 h, PixelFormat format, deUint32 usage)
180 TCU_THROW(ResourceError, "Could not alloc for GraphicBuffer");
185 android::GraphicBuffer* const gb = callConstructor4<android::GraphicBuffer, deUint32, deUint32, PixelFormat, deUint32>(functions.constructor,
198 callDestructor<android::GraphicBuffer>(functions.destructor, gb);
199 TCU_THROW(NotSupportedError, ("GraphicBuffer ctor failed, initCheck returned " + de::toString(ctorStatus)).c_str());
208 TCU_THROW(NotSupportedError, "GraphicBuffer layout unexpected");
217 TCU_THROW(NotSupportedError, "GraphicBuffer version unexpected");
240 GraphicBuffer::GraphicBuffer (const LibUI& lib, deUint32 width, deUint32 height, PixelFormat format, deUint32 usage)
241 : m_functions (lib.getFunctions().graphicBuffer)
251 GraphicBuffer::~GraphicBuffer (void)
260 status_t GraphicBuffer::lock (deUint32 usage, void** vaddr)
265 status_t GraphicBuffer::unlock (void)
270 ANativeWindowBuffer* GraphicBuffer::getNativeBuffer (void) const