diff options
Diffstat (limited to 'libs/rs/rsContext.h')
-rw-r--r-- | libs/rs/rsContext.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/rs/rsContext.h b/libs/rs/rsContext.h index 2edd16d..31d8cc8 100644 --- a/libs/rs/rsContext.h +++ b/libs/rs/rsContext.h @@ -51,7 +51,7 @@ namespace renderscript { class Context { public: - Context(Device *, bool useDepth); + Context(Device *, bool isGraphics, bool useDepth); ~Context(); static pthread_key_t gThreadTLSKey; @@ -201,6 +201,7 @@ protected: uint32_t mWidth; uint32_t mHeight; int32_t mThreadPriority; + bool mIsGraphicsContext; bool mRunning; bool mExit; |