Fix RS build.
ANativeWindowBuffer is not available in the NDK, so make it opaque.
This also fixes a broken merge of mine.
Change-Id: I6f07776ec2b6b147edd9e70646d71581d01a93a6
diff --git a/rsAllocation.h b/rsAllocation.h
index 440246e..f98fa83 100644
--- a/rsAllocation.h
+++ b/rsAllocation.h
@@ -19,12 +19,13 @@
#include "rsType.h"
-#include <ui/GraphicBuffer.h>
-
#if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB)
+#include <ui/GraphicBuffer.h>
#include "rsGrallocConsumer.h"
#include "gui/CpuConsumer.h"
#include "gui/GLConsumer.h"
+#else
+struct ANativeWindowBuffer;
#endif
// ---------------------------------------------------------------------------