Home | History | Annotate | Download | only in android

Lines Matching refs:window

36  * Pixel formats that a window can use.
49 * {@link ANativeWindow} is opaque type that provides access to a native window.
85 void ANativeWindow_acquire(ANativeWindow* window);
90 void ANativeWindow_release(ANativeWindow* window);
93 * Return the current width in pixels of the window surface. Returns a
96 int32_t ANativeWindow_getWidth(ANativeWindow* window);
99 * Return the current height in pixels of the window surface. Returns a
102 int32_t ANativeWindow_getHeight(ANativeWindow* window);
105 * Return the current pixel format of the window surface. Returns a
108 int32_t ANativeWindow_getFormat(ANativeWindow* window);
111 * Change the format and size of the window buffers.
114 * dimensions of the window on screen. If these are different than the
115 * window's physical size, then it buffer will be scaled to match that size
118 * For all of these parameters, if 0 is supplied then the window's base
124 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window,
128 * Lock the window's next drawing surface for writing.
135 int32_t ANativeWindow_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer,
139 * Unlock the window's drawing surface after previously locking it,
142 int32_t ANativeWindow_unlockAndPost(ANativeWindow* window);