summaryrefslogtreecommitdiffstats
path: root/libs/rs/rsContext.h
diff options
context:
space:
mode:
authorJack Palevich <jackpal@google.com>2010-02-12 18:21:26 +0800
committerJack Palevich <jackpal@google.com>2010-02-12 18:21:26 +0800
commita0659aa36c987e28e29778bd97e75fe52152c60e (patch)
treeb3cb8b2888c171060e94a787381cfa3303dda100 /libs/rs/rsContext.h
parent470969346d7958f859d97d1a136b4ecc11e2a464 (diff)
downloadframeworks_base-a0659aa36c987e28e29778bd97e75fe52152c60e.zip
frameworks_base-a0659aa36c987e28e29778bd97e75fe52152c60e.tar.gz
frameworks_base-a0659aa36c987e28e29778bd97e75fe52152c60e.tar.bz2
Revert "RenderScript should not depend on libsurfaceflinger_client.so"
This reverts commit 88b55fb090ace1a835f890758866f42f03795c12.
Diffstat (limited to 'libs/rs/rsContext.h')
-rw-r--r--libs/rs/rsContext.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libs/rs/rsContext.h b/libs/rs/rsContext.h
index 03e65f1..caf9728 100644
--- a/libs/rs/rsContext.h
+++ b/libs/rs/rsContext.h
@@ -41,11 +41,12 @@
#include "rsgApiStructs.h"
#include "rsLocklessFifo.h"
-#include <ui/egl/android_natives.h>
// ---------------------------------------------------------------------------
namespace android {
+class Surface;
+
namespace renderscript {
class Context
@@ -98,7 +99,7 @@ public:
void pause();
void resume();
- void setSurface(uint32_t w, uint32_t h, android_native_window_t *sur);
+ void setSurface(uint32_t w, uint32_t h, Surface *sur);
void setPriority(int32_t p);
void assignName(ObjectBase *obj, const char *name, uint32_t len);
@@ -238,7 +239,7 @@ private:
static void * threadProc(void *);
- android_native_window_t *mWndSurface;
+ Surface *mWndSurface;
Vector<ObjectBase *> mNames;