diff options
| author | 2011-05-17 15:40:29 -0700 | |
|---|---|---|
| committer | 2011-05-17 15:40:29 -0700 | |
| commit | 51c07e717b4416dd338b0add3a3c94d1137366af (patch) | |
| tree | 1ea2c782fd77ce8670b13a325f91ae3ab3ac98d4 /libs/rs/rsContext.cpp | |
| parent | 433060a152aa4158f8a2082873b89004d673f240 (diff) | |
| parent | 2f6964fc89bf69c8e37f096d37c8e224d598b8f8 (diff) | |
Merge "Moves fbo support in renderscript behind the hal"
Diffstat (limited to 'libs/rs/rsContext.cpp')
| -rw-r--r-- | libs/rs/rsContext.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/rs/rsContext.cpp b/libs/rs/rsContext.cpp index 6027946a35ee..a4e1b7296112 100644 --- a/libs/rs/rsContext.cpp +++ b/libs/rs/rsContext.cpp @@ -238,6 +238,7 @@ void * Context::threadProc(void *vrsc) { rsc->setProgramStore(NULL); rsc->mStateFont.init(rsc); rsc->setFont(NULL); + rsc->mFBOCache.init(rsc); } rsc->mRunning = true; @@ -298,6 +299,7 @@ void Context::destroyWorkerThreadResources() { mStateFragment.deinit(this); mStateFragmentStore.deinit(this); mStateFont.deinit(this); + mFBOCache.deinit(this); } //LOGV("destroyWorkerThreadResources 2"); mExit = true; |