Home | History | Annotate | Download | only in WSI

Lines Matching refs:window

19 #include <system/window.h>
23 inline int dequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer)
26 return native_window_dequeue_buffer_and_wait(window, buffer);
28 return window->dequeueBuffer(window, buffer);
32 inline int queueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd)
35 return window->queueBuffer(window, buffer, fenceFd);
37 return window->queueBuffer(window, buffer);
41 inline int cancelBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd)
44 return window->cancelBuffer(window, buffer, fenceFd);
46 return window->cancelBuffer(window, buffer);
50 FrameBufferAndroid::FrameBufferAndroid(ANativeWindow* window, int width, int height)
52 nativeWindow(window), buffer(nullptr)
96 TRACE("lock failed: buffer of %dx%d too small for window of %dx%d",
142 sw::FrameBuffer *createFrameBuffer(void *display, ANativeWindow* window, int width, int height)
144 return new sw::FrameBufferAndroid(window, width, height);