summaryrefslogtreecommitdiffstats
path: root/native/include/android/native_window.h
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2010-06-30 18:35:14 -0700
committerDianne Hackborn <hackbod@google.com>2010-07-01 14:43:23 -0700
commit54a181b1a2b1517a9479b21fbf7705a688232faf (patch)
tree90bf20d8f5f818d357c677cb713e964b920dea67 /native/include/android/native_window.h
parent65c83b906d01c3c1493d0547757dbb16d4c3722a (diff)
downloadframeworks_base-54a181b1a2b1517a9479b21fbf7705a688232faf.zip
frameworks_base-54a181b1a2b1517a9479b21fbf7705a688232faf.tar.gz
frameworks_base-54a181b1a2b1517a9479b21fbf7705a688232faf.tar.bz2
Make real API for native code to get its window.
Added implementation to use ANativeWindow and provide it to a NativeActivity. Change-Id: I890d71b6e15d4af71e6cf81b327961d7061ec1c2
Diffstat (limited to 'native/include/android/native_window.h')
-rw-r--r--native/include/android/native_window.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/native/include/android/native_window.h b/native/include/android/native_window.h
index e6d5fea..b3f47b2 100644
--- a/native/include/android/native_window.h
+++ b/native/include/android/native_window.h
@@ -25,6 +25,23 @@ extern "C" {
struct ANativeWindow;
typedef struct ANativeWindow ANativeWindow;
+/*
+ * Return the current width in pixels of the window surface. Returns a
+ * negative value on error.
+ */
+int32_t ANativeWindow_getWidth(ANativeWindow* window);
+
+/*
+ * Return the current height in pixels of the window surface. Returns a
+ * negative value on error.
+ */
+int32_t ANativeWindow_getHeight(ANativeWindow* window);
+
+/*
+ * Return the current pixel format of the window surface. Returns a
+ * negative value on error.
+ */
+int32_t ANativeWindow_getFormat(ANativeWindow* window);
#ifdef __cplusplus
};