diff options
| author | 2012-02-09 15:17:27 -0800 | |
|---|---|---|
| committer | 2012-02-09 15:17:27 -0800 | |
| commit | 468a971512f4665b13e83cc3c7dc24c9031b14eb (patch) | |
| tree | bb42ec4869adeb46f3c29030472aae3047fb253d /libs/rs/rsContext.cpp | |
| parent | 8f0f10a80a89b2071b949f13ac6ff23514366d23 (diff) | |
| parent | 87e2721f89a7210c4382a2b444ade64f4a50f739 (diff) | |
Merge "Remove unused param."
Diffstat (limited to 'libs/rs/rsContext.cpp')
| -rw-r--r-- | libs/rs/rsContext.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/rs/rsContext.cpp b/libs/rs/rsContext.cpp index 04284dd964b0..1a34bd588aa6 100644 --- a/libs/rs/rsContext.cpp +++ b/libs/rs/rsContext.cpp @@ -248,7 +248,7 @@ void * Context::threadProc(void *vrsc) { rsc->mRunning = true; if (!rsc->mIsGraphicsContext) { while (!rsc->mExit) { - rsc->mIO.playCoreCommands(rsc, true, -1); + rsc->mIO.playCoreCommands(rsc, -1); } } else { #ifndef ANDROID_RS_SERIALIZE @@ -268,14 +268,14 @@ void * Context::threadProc(void *vrsc) { vsyncRate = targetRate; } if (targetRate) { - drawOnce |= rsc->mIO.playCoreCommands(rsc, true, displayEvent.getFd()); + drawOnce |= rsc->mIO.playCoreCommands(rsc, displayEvent.getFd()); while (displayEvent.getEvents(eventBuffer, 1) != 0) { //ALOGE("vs2 time past %lld", (rsc->getTime() - eventBuffer[0].header.timestamp) / 1000000); } } else #endif { - drawOnce |= rsc->mIO.playCoreCommands(rsc, true, -1); + drawOnce |= rsc->mIO.playCoreCommands(rsc, -1); } if ((rsc->mRootScript.get() != NULL) && rsc->mHasSurface && |