add format parameter to setBufferGeometry

Change-Id: I7cc2acdc6e65e9468ecfd5b2f22e6b495a383be9
This commit is contained in:
Mathias Agopian
2010-10-24 18:35:26 -07:00
parent 457bed2bc6
commit 3026a1c4e8
2 changed files with 3 additions and 3 deletions

View File

@@ -58,8 +58,8 @@ int32_t ANativeWindow_getFormat(ANativeWindow* window) {
}
int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width,
int32_t height) {
native_window_set_buffers_geometry(window, width, height, 0);
int32_t height, int32_t format) {
native_window_set_buffers_geometry(window, width, height, format);
return 0;
}

View File

@@ -96,7 +96,7 @@ int32_t ANativeWindow_getFormat(ANativeWindow* window);
* For all of these parameters, if 0 is supplied then the window's base
* value will come back in force.
*/
int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, int32_t height);
int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, int32_t height, int32_t format);
/**
* Lock the window's next drawing surface for writing.