Home | History | Annotate | Download | only in android

Lines Matching refs:window

27  * Pixel formats that a window can use.
63 void ANativeWindow_acquire(ANativeWindow* window);
68 void ANativeWindow_release(ANativeWindow* window);
71 * Return the current width in pixels of the window surface. Returns a
74 int32_t ANativeWindow_getWidth(ANativeWindow* window);
77 * Return the current height in pixels of the window surface. Returns a
80 int32_t ANativeWindow_getHeight(ANativeWindow* window);
83 * Return the current pixel format of the window surface. Returns a
86 int32_t ANativeWindow_getFormat(ANativeWindow* window);
89 * Change the format and size of the window buffers.
92 * dimensions of the window on screen. If these are different than the
93 * window's physical size, then it buffer will be scaled to match that size
96 * For all of these parameters, if 0 is supplied then the window's base
102 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window,
106 * Lock the window's next drawing surface for writing.
113 int32_t ANativeWindow_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer,
117 * Unlock the window's drawing surface after previously locking it,
120 int32_t ANativeWindow_unlockAndPost(ANativeWindow* window);