blob: decd9f1826a95cc3ffe96c1365e3d8998363187a [file] [log] [blame]
Jason Samsd19f10d2009-05-22 14:03:28 -07001/*
Alex Sakhartchouk4a36b452011-04-29 16:49:08 -07002 * Copyright (C) 2011 The Android Open Source Project
Jason Samsd19f10d2009-05-22 14:03:28 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "rsDevice.h"
18#include "rsContext.h"
19#include "rsThreadIO.h"
Mathias Agopian3142f4f2009-06-22 18:01:09 -070020#include <ui/FramebufferNativeWindow.h>
Jason Samsd19f10d2009-05-22 14:03:28 -070021
Jason Sams7d787b42009-11-15 12:14:26 -080022#include <sys/types.h>
23#include <sys/resource.h>
Jason Sams8e6c17f2010-07-19 15:38:19 -070024#include <sched.h>
Jason Sams7d787b42009-11-15 12:14:26 -080025
Joe Onorato9ac2c662009-09-23 16:37:36 -070026#include <cutils/properties.h>
27
Jason Sams7d787b42009-11-15 12:14:26 -080028#include <cutils/sched_policy.h>
Jason Samsf3470ed2010-09-28 14:41:22 -070029#include <sys/syscall.h>
30#include <string.h>
Jason Sams7d787b42009-11-15 12:14:26 -080031
Jason Samsd19f10d2009-05-22 14:03:28 -070032using namespace android;
33using namespace android::renderscript;
34
Jason Sams41c19db92009-10-15 16:47:31 -070035pthread_mutex_t Context::gInitMutex = PTHREAD_MUTEX_INITIALIZER;
Stephen Hines1ac9da62011-01-07 15:11:30 -080036pthread_mutex_t Context::gLibMutex = PTHREAD_MUTEX_INITIALIZER;
Jason Samsd19f10d2009-05-22 14:03:28 -070037
Alex Sakhartchouked9f2102010-11-09 17:00:54 -080038bool Context::initGLThread() {
Jason Sams11c8af92010-10-13 15:31:10 -070039 pthread_mutex_lock(&gInitMutex);
40 LOGV("initGLThread start %p", this);
41
Jason Sams803626f2011-04-06 17:52:23 -070042 if (!mHal.funcs.initGraphics(this)) {
Jason Samsd5f06302010-11-03 14:27:11 -070043 pthread_mutex_unlock(&gInitMutex);
Jason Sams803626f2011-04-06 17:52:23 -070044 LOGE("%p, initGraphics failed", this);
Jason Samsd5f06302010-11-03 14:27:11 -070045 return false;
Jason Sams11c8af92010-10-13 15:31:10 -070046 }
47
Jason Sams11c8af92010-10-13 15:31:10 -070048 pthread_mutex_unlock(&gInitMutex);
Jason Samsd5f06302010-11-03 14:27:11 -070049 return true;
Jason Samsd19f10d2009-05-22 14:03:28 -070050}
51
Alex Sakhartchouked9f2102010-11-09 17:00:54 -080052void Context::deinitEGL() {
Jason Samscfc04362010-09-14 14:59:03 -070053 LOGV("%p, deinitEGL", this);
Jason Sams803626f2011-04-06 17:52:23 -070054 mHal.funcs.shutdownGraphics(this);
Jason Sams71362202009-10-27 14:44:31 -070055}
56
Jason Samsa17af042010-11-17 15:29:32 -080057Context::PushState::PushState(Context *con) {
58 mRsc = con;
Jason Sams07078e32011-02-23 14:47:17 -080059 if (con->mIsGraphicsContext) {
60 mFragment.set(con->getProgramFragment());
61 mVertex.set(con->getProgramVertex());
62 mStore.set(con->getProgramStore());
63 mRaster.set(con->getProgramRaster());
64 mFont.set(con->getFont());
65 }
Jason Samsa17af042010-11-17 15:29:32 -080066}
67
68Context::PushState::~PushState() {
Jason Sams07078e32011-02-23 14:47:17 -080069 if (mRsc->mIsGraphicsContext) {
70 mRsc->setProgramFragment(mFragment.get());
71 mRsc->setProgramVertex(mVertex.get());
72 mRsc->setProgramStore(mStore.get());
73 mRsc->setProgramRaster(mRaster.get());
74 mRsc->setFont(mFont.get());
75 }
Jason Samsa17af042010-11-17 15:29:32 -080076}
77
Jason Sams71362202009-10-27 14:44:31 -070078
Alex Sakhartchouked9f2102010-11-09 17:00:54 -080079uint32_t Context::runScript(Script *s) {
Jason Samsa17af042010-11-17 15:29:32 -080080 PushState(this);
Jason Samsda423d82009-06-09 12:15:30 -070081
Jason Samsf17bccc2010-05-28 18:23:22 -070082 uint32_t ret = s->run(this);
Jason Samsb0ec1b42009-07-28 12:02:16 -070083 return ret;
Jason Samsda423d82009-06-09 12:15:30 -070084}
85
Alex Sakhartchouked9f2102010-11-09 17:00:54 -080086uint32_t Context::runRootScript() {
Jason Samsb9d5c572009-12-09 11:05:45 -080087 timerSet(RS_TIMER_SCRIPT);
Jason Sams516c3192009-10-06 13:58:47 -070088 mStateFragmentStore.mLast.clear();
Jason Samsf17bccc2010-05-28 18:23:22 -070089 uint32_t ret = runScript(mRootScript.get());
Jason Samsc7412b32009-10-14 15:43:53 -070090
Jason Sams9bee51c2009-08-05 13:57:03 -070091 return ret;
Jason Samsd19f10d2009-05-22 14:03:28 -070092}
93
Alex Sakhartchouked9f2102010-11-09 17:00:54 -080094uint64_t Context::getTime() const {
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -070095#ifndef ANDROID_RS_SERIALIZE
Jason Samsf4d16062009-08-19 12:17:14 -070096 struct timespec t;
97 clock_gettime(CLOCK_MONOTONIC, &t);
98 return t.tv_nsec + ((uint64_t)t.tv_sec * 1000 * 1000 * 1000);
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -070099#else
100 return 0;
101#endif //ANDROID_RS_SERIALIZE
Jason Samsf4d16062009-08-19 12:17:14 -0700102}
103
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800104void Context::timerReset() {
Jason Samsf4d16062009-08-19 12:17:14 -0700105 for (int ct=0; ct < _RS_TIMER_TOTAL; ct++) {
106 mTimers[ct] = 0;
107 }
108}
109
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800110void Context::timerInit() {
Jason Samsf4d16062009-08-19 12:17:14 -0700111 mTimeLast = getTime();
Jason Sams2525a812009-09-03 15:43:13 -0700112 mTimeFrame = mTimeLast;
113 mTimeLastFrame = mTimeLast;
Jason Samsf4d16062009-08-19 12:17:14 -0700114 mTimerActive = RS_TIMER_INTERNAL;
Alex Sakhartchouk76322af2010-10-05 13:23:55 -0700115 mAverageFPSFrameCount = 0;
116 mAverageFPSStartTime = mTimeLast;
117 mAverageFPS = 0;
Jason Samsf4d16062009-08-19 12:17:14 -0700118 timerReset();
119}
120
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800121void Context::timerFrame() {
Jason Sams2525a812009-09-03 15:43:13 -0700122 mTimeLastFrame = mTimeFrame;
123 mTimeFrame = getTime();
Alex Sakhartchouk76322af2010-10-05 13:23:55 -0700124 // Update average fps
125 const uint64_t averageFramerateInterval = 1000 * 1000000;
126 mAverageFPSFrameCount ++;
127 uint64_t inverval = mTimeFrame - mAverageFPSStartTime;
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800128 if (inverval >= averageFramerateInterval) {
Alex Sakhartchouk76322af2010-10-05 13:23:55 -0700129 inverval = inverval / 1000000;
130 mAverageFPS = (mAverageFPSFrameCount * 1000) / inverval;
131 mAverageFPSFrameCount = 0;
132 mAverageFPSStartTime = mTimeFrame;
133 }
Jason Sams2525a812009-09-03 15:43:13 -0700134}
135
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800136void Context::timerSet(Timers tm) {
Jason Samsf4d16062009-08-19 12:17:14 -0700137 uint64_t last = mTimeLast;
138 mTimeLast = getTime();
139 mTimers[mTimerActive] += mTimeLast - last;
140 mTimerActive = tm;
141}
142
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800143void Context::timerPrint() {
Jason Samsf4d16062009-08-19 12:17:14 -0700144 double total = 0;
145 for (int ct = 0; ct < _RS_TIMER_TOTAL; ct++) {
146 total += mTimers[ct];
147 }
Jason Sams2525a812009-09-03 15:43:13 -0700148 uint64_t frame = mTimeFrame - mTimeLastFrame;
Jason Samsb9d5c572009-12-09 11:05:45 -0800149 mTimeMSLastFrame = frame / 1000000;
150 mTimeMSLastScript = mTimers[RS_TIMER_SCRIPT] / 1000000;
151 mTimeMSLastSwap = mTimers[RS_TIMER_CLEAR_SWAP] / 1000000;
Jason Samsf4d16062009-08-19 12:17:14 -0700152
Jason Samsb9d5c572009-12-09 11:05:45 -0800153
154 if (props.mLogTimes) {
Alex Sakhartchouk98bfe5d2010-10-18 17:18:50 -0700155 LOGV("RS: Frame (%i), Script %2.1f%% (%i), Swap %2.1f%% (%i), Idle %2.1f%% (%lli), Internal %2.1f%% (%lli), Avg fps: %u",
Jason Samsb9d5c572009-12-09 11:05:45 -0800156 mTimeMSLastFrame,
157 100.0 * mTimers[RS_TIMER_SCRIPT] / total, mTimeMSLastScript,
158 100.0 * mTimers[RS_TIMER_CLEAR_SWAP] / total, mTimeMSLastSwap,
159 100.0 * mTimers[RS_TIMER_IDLE] / total, mTimers[RS_TIMER_IDLE] / 1000000,
Alex Sakhartchouk76322af2010-10-05 13:23:55 -0700160 100.0 * mTimers[RS_TIMER_INTERNAL] / total, mTimers[RS_TIMER_INTERNAL] / 1000000,
161 mAverageFPS);
Jason Samsb9d5c572009-12-09 11:05:45 -0800162 }
Jason Samsf4d16062009-08-19 12:17:14 -0700163}
164
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800165bool Context::setupCheck() {
Jason Samsd081fff2010-09-16 18:18:29 -0700166
Jason Sams331bf9b2011-04-06 11:23:54 -0700167 mFragmentStore->setup(this, &mStateFragmentStore);
Alex Sakhartchouk407cae92011-05-06 14:59:45 -0700168 mFragment->setup(this, &mStateFragment);
Jason Sams331bf9b2011-04-06 11:23:54 -0700169 mRaster->setup(this, &mStateRaster);
Alex Sakhartchouk407cae92011-05-06 14:59:45 -0700170 mVertex->setup(this, &mStateVertex);
171 mFBOCache.setup(this);
Jason Sams156cce62010-03-03 13:03:18 -0800172 return true;
Jason Samsd19f10d2009-05-22 14:03:28 -0700173}
174
Alex Sakhartchoukfeede2a2010-10-01 10:54:06 -0700175void Context::setupProgramStore() {
Jason Sams331bf9b2011-04-06 11:23:54 -0700176 mFragmentStore->setup(this, &mStateFragmentStore);
Alex Sakhartchoukfeede2a2010-10-01 10:54:06 -0700177}
178
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800179static bool getProp(const char *str) {
Joe Onorato9ac2c662009-09-23 16:37:36 -0700180 char buf[PROPERTY_VALUE_MAX];
Jason Sams66b27712009-09-25 15:25:00 -0700181 property_get(str, buf, "0");
Joe Onorato9ac2c662009-09-23 16:37:36 -0700182 return 0 != strcmp(buf, "0");
183}
Jason Samsd19f10d2009-05-22 14:03:28 -0700184
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800185void Context::displayDebugStats() {
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700186 char buffer[128];
Alex Sakhartchouk76322af2010-10-05 13:23:55 -0700187 sprintf(buffer, "Avg fps %u, Frame %i ms, Script %i ms", mAverageFPS, mTimeMSLastFrame, mTimeMSLastScript);
Alex Sakhartchouk55e81982010-08-05 11:24:14 -0700188 float oldR, oldG, oldB, oldA;
189 mStateFont.getFontColor(&oldR, &oldG, &oldB, &oldA);
Alex Sakhartchouk10825a02010-10-05 11:33:27 -0700190 uint32_t bufferLen = strlen(buffer);
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700191
Alex Sakhartchouk20a93542011-03-17 13:49:38 -0700192 ObjectBaseRef<Font> lastFont(getFont());
193 setFont(NULL);
Alex Sakhartchouk10825a02010-10-05 11:33:27 -0700194 float shadowCol = 0.1f;
Alex Sakhartchouk55e81982010-08-05 11:24:14 -0700195 mStateFont.setFontColor(shadowCol, shadowCol, shadowCol, 1.0f);
Alex Sakhartchouk76322af2010-10-05 13:23:55 -0700196 mStateFont.renderText(buffer, bufferLen, 5, getHeight() - 6);
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700197
Alex Sakhartchouk10825a02010-10-05 11:33:27 -0700198 mStateFont.setFontColor(1.0f, 0.7f, 0.0f, 1.0f);
Alex Sakhartchouk76322af2010-10-05 13:23:55 -0700199 mStateFont.renderText(buffer, bufferLen, 4, getHeight() - 7);
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700200
Alex Sakhartchouk20a93542011-03-17 13:49:38 -0700201 setFont(lastFont.get());
Alex Sakhartchouk55e81982010-08-05 11:24:14 -0700202 mStateFont.setFontColor(oldR, oldG, oldB, oldA);
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700203}
204
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800205void * Context::threadProc(void *vrsc) {
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700206 Context *rsc = static_cast<Context *>(vrsc);
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700207#ifndef ANDROID_RS_SERIALIZE
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700208 rsc->mNativeThreadId = gettid();
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700209 setpriority(PRIO_PROCESS, rsc->mNativeThreadId, ANDROID_PRIORITY_DISPLAY);
210 rsc->mThreadPriority = ANDROID_PRIORITY_DISPLAY;
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700211#endif //ANDROID_RS_SERIALIZE
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700212 rsc->props.mLogTimes = getProp("debug.rs.profile");
213 rsc->props.mLogScripts = getProp("debug.rs.script");
214 rsc->props.mLogObjects = getProp("debug.rs.object");
215 rsc->props.mLogShaders = getProp("debug.rs.shader");
216 rsc->props.mLogShadersAttr = getProp("debug.rs.shader.attributes");
217 rsc->props.mLogShadersUniforms = getProp("debug.rs.shader.uniforms");
218 rsc->props.mLogVisual = getProp("debug.rs.visual");
Joe Onorato9ac2c662009-09-23 16:37:36 -0700219
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700220 if (!rsdHalInit(rsc, 0, 0)) {
Jason Sams26985362011-05-03 15:01:58 -0700221 rsc->setError(RS_ERROR_FATAL_DRIVER, "Failed initializing GL");
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700222 LOGE("Hal init failed");
223 return NULL;
224 }
225 rsc->mHal.funcs.setPriority(rsc, rsc->mThreadPriority);
Jason Sams462d11b2009-06-19 16:03:18 -0700226
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700227 if (rsc->mIsGraphicsContext) {
Jason Sams26985362011-05-03 15:01:58 -0700228 if (!rsc->initGLThread()) {
229 rsc->setError(RS_ERROR_OUT_OF_MEMORY, "Failed initializing GL");
230 return NULL;
231 }
232
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700233 rsc->mStateRaster.init(rsc);
234 rsc->setProgramRaster(NULL);
235 rsc->mStateVertex.init(rsc);
236 rsc->setProgramVertex(NULL);
237 rsc->mStateFragment.init(rsc);
238 rsc->setProgramFragment(NULL);
239 rsc->mStateFragmentStore.init(rsc);
240 rsc->setProgramStore(NULL);
241 rsc->mStateFont.init(rsc);
242 rsc->setFont(NULL);
Alex Sakhartchouk2f6964f2011-05-13 14:53:34 -0700243 rsc->mFBOCache.init(rsc);
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700244 }
Jason Sams9c54bdb2009-06-17 16:52:59 -0700245
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700246 rsc->mRunning = true;
247 bool mDraw = true;
248 while (!rsc->mExit) {
249 mDraw |= rsc->mIO.playCoreCommands(rsc, !mDraw);
250 mDraw &= (rsc->mRootScript.get() != NULL);
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700251 mDraw &= rsc->mHasSurface;
Jason Samsd19f10d2009-05-22 14:03:28 -0700252
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700253 uint32_t targetTime = 0;
254 if (mDraw && rsc->mIsGraphicsContext) {
255 targetTime = rsc->runRootScript();
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700256
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700257 if (rsc->props.mLogVisual) {
258 rsc->displayDebugStats();
259 }
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700260
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700261 mDraw = targetTime && !rsc->mPaused;
262 rsc->timerSet(RS_TIMER_CLEAR_SWAP);
263 rsc->mHal.funcs.swap(rsc);
264 rsc->timerFrame();
265 rsc->timerSet(RS_TIMER_INTERNAL);
266 rsc->timerPrint();
267 rsc->timerReset();
268 }
269 if (targetTime > 1) {
270 int32_t t = (targetTime - (int32_t)(rsc->mTimeMSLastScript + rsc->mTimeMSLastSwap)) * 1000;
271 if (t > 0) {
272 usleep(t);
273 }
274 }
275 }
Jason Samsd19f10d2009-05-22 14:03:28 -0700276
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700277 LOGV("%p, RS Thread exiting", rsc);
Jason Samsa9e7a052009-09-25 14:51:22 -0700278
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700279 if (rsc->mIsGraphicsContext) {
280 pthread_mutex_lock(&gInitMutex);
281 rsc->deinitEGL();
282 pthread_mutex_unlock(&gInitMutex);
283 }
Jason Sams71362202009-10-27 14:44:31 -0700284
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700285 LOGV("%p, RS Thread exited", rsc);
286 return NULL;
Jason Samsd19f10d2009-05-22 14:03:28 -0700287}
288
Jason Sams5c68a712010-12-24 14:38:39 -0800289void Context::destroyWorkerThreadResources() {
Jason Samsc55de662011-01-23 17:48:45 -0800290 //LOGV("destroyWorkerThreadResources 1");
Jason Sams38f8d9d2011-01-27 00:14:13 -0800291 ObjectBase::zeroAllUserRef(this);
Jason Sams5c68a712010-12-24 14:38:39 -0800292 if (mIsGraphicsContext) {
293 mRaster.clear();
294 mFragment.clear();
295 mVertex.clear();
296 mFragmentStore.clear();
297 mFont.clear();
298 mRootScript.clear();
299 mStateRaster.deinit(this);
300 mStateVertex.deinit(this);
301 mStateFragment.deinit(this);
302 mStateFragmentStore.deinit(this);
303 mStateFont.deinit(this);
Alex Sakhartchouk2f6964f2011-05-13 14:53:34 -0700304 mFBOCache.deinit(this);
Jason Sams5c68a712010-12-24 14:38:39 -0800305 }
Jason Samsc55de662011-01-23 17:48:45 -0800306 //LOGV("destroyWorkerThreadResources 2");
Jason Sams84035ff2011-01-09 16:09:51 -0800307 mExit = true;
Jason Sams5c68a712010-12-24 14:38:39 -0800308}
309
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800310void Context::setPriority(int32_t p) {
Jason Sams7d787b42009-11-15 12:14:26 -0800311 // Note: If we put this in the proper "background" policy
312 // the wallpapers can become completly unresponsive at times.
313 // This is probably not what we want for something the user is actively
314 // looking at.
Jason Samsb9d5c572009-12-09 11:05:45 -0800315 mThreadPriority = p;
Jason Sams7d787b42009-11-15 12:14:26 -0800316#if 0
317 SchedPolicy pol = SP_FOREGROUND;
318 if (p > 0) {
319 pol = SP_BACKGROUND;
320 }
321 if (!set_sched_policy(mNativeThreadId, pol)) {
322 // success; reset the priority as well
323 }
324#else
Jason Sams8e6c17f2010-07-19 15:38:19 -0700325 setpriority(PRIO_PROCESS, mNativeThreadId, p);
Jason Sams7d787b42009-11-15 12:14:26 -0800326#endif
327}
328
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800329Context::Context() {
Jason Samsd5f06302010-11-03 14:27:11 -0700330 mDev = NULL;
Jason Samsd19f10d2009-05-22 14:03:28 -0700331 mRunning = false;
332 mExit = false;
Jason Sams65e7aa52009-09-24 17:38:20 -0700333 mPaused = false;
Jason Samsa9e7a052009-09-25 14:51:22 -0700334 mObjHead = NULL;
Jason Sams156cce62010-03-03 13:03:18 -0800335 mError = RS_ERROR_NONE;
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700336 mDPI = 96;
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700337 mIsContextLite = false;
Jason Samsd5f06302010-11-03 14:27:11 -0700338}
339
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800340Context * Context::createContext(Device *dev, const RsSurfaceConfig *sc) {
Jason Samsd5f06302010-11-03 14:27:11 -0700341 Context * rsc = new Context();
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700342
Jason Samsd5f06302010-11-03 14:27:11 -0700343 if (!rsc->initContext(dev, sc)) {
344 delete rsc;
345 return NULL;
346 }
347 return rsc;
348}
349
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700350Context * Context::createContextLite() {
351 Context * rsc = new Context();
352 rsc->mIsContextLite = true;
353 return rsc;
354}
355
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800356bool Context::initContext(Device *dev, const RsSurfaceConfig *sc) {
Jason Samsd5f06302010-11-03 14:27:11 -0700357 pthread_mutex_lock(&gInitMutex);
358
Jason Samsedbfabd2011-05-17 15:01:29 -0700359 mIO.init();
360
Jason Samsd5f06302010-11-03 14:27:11 -0700361 dev->addContext(this);
362 mDev = dev;
Jason Sams11c8af92010-10-13 15:31:10 -0700363 if (sc) {
364 mUserSurfaceConfig = *sc;
365 } else {
366 memset(&mUserSurfaceConfig, 0, sizeof(mUserSurfaceConfig));
367 }
Jason Sams156cce62010-03-03 13:03:18 -0800368
Jason Sams11c8af92010-10-13 15:31:10 -0700369 mIsGraphicsContext = sc != NULL;
Jason Samsd19f10d2009-05-22 14:03:28 -0700370
Jason Sams8ad00102009-06-04 14:35:01 -0700371 int status;
372 pthread_attr_t threadAttr;
373
Jason Sams41c19db92009-10-15 16:47:31 -0700374 pthread_mutex_unlock(&gInitMutex);
375
376 // Global init done at this point.
Jason Sams462d11b2009-06-19 16:03:18 -0700377
Jason Sams8ad00102009-06-04 14:35:01 -0700378 status = pthread_attr_init(&threadAttr);
379 if (status) {
380 LOGE("Failed to init thread attribute.");
Jason Samsd5f06302010-11-03 14:27:11 -0700381 return false;
Jason Sams8ad00102009-06-04 14:35:01 -0700382 }
383
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700384 mHasSurface = false;
Jason Samsf29ca502009-06-23 12:22:47 -0700385
Jason Samsf4d16062009-08-19 12:17:14 -0700386 timerInit();
Jason Samsd3f2eaf2009-09-24 15:42:52 -0700387 timerSet(RS_TIMER_INTERNAL);
Jason Sams730ee652009-08-18 17:07:09 -0700388
Jason Sams8ad00102009-06-04 14:35:01 -0700389 status = pthread_create(&mThreadId, &threadAttr, threadProc, this);
Jason Samsd19f10d2009-05-22 14:03:28 -0700390 if (status) {
391 LOGE("Failed to start rs context thread.");
Jason Samsd5f06302010-11-03 14:27:11 -0700392 return false;
Jason Sams8e6c17f2010-07-19 15:38:19 -0700393 }
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800394 while (!mRunning && (mError == RS_ERROR_NONE)) {
Jason Samsc7f4e412010-07-20 15:09:00 -0700395 usleep(100);
396 }
397
Jason Samsd5f06302010-11-03 14:27:11 -0700398 if (mError != RS_ERROR_NONE) {
Jason Sams80e29cf2011-03-18 17:08:54 -0700399 LOGE("Errors during thread init");
Jason Samsd5f06302010-11-03 14:27:11 -0700400 return false;
401 }
402
Jason Sams8ad00102009-06-04 14:35:01 -0700403 pthread_attr_destroy(&threadAttr);
Jason Samsd5f06302010-11-03 14:27:11 -0700404 return true;
Jason Samsd19f10d2009-05-22 14:03:28 -0700405}
406
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800407Context::~Context() {
Jason Samsf5b45962009-08-25 14:49:07 -0700408 LOGV("Context::~Context");
Jason Sams84035ff2011-01-09 16:09:51 -0800409
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700410 if (!mIsContextLite) {
411 mIO.coreFlush();
412 rsAssert(mExit);
413 mExit = true;
414 mPaused = false;
415 void *res;
Jason Samsd19f10d2009-05-22 14:03:28 -0700416
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700417 mIO.shutdown();
418 int status = pthread_join(mThreadId, &res);
Jason Samsd19f10d2009-05-22 14:03:28 -0700419
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700420 if (mHal.funcs.shutdownDriver) {
421 mHal.funcs.shutdownDriver(this);
422 }
423
424 // Global structure cleanup.
425 pthread_mutex_lock(&gInitMutex);
426 if (mDev) {
427 mDev->removeContext(this);
428 mDev = NULL;
429 }
430 pthread_mutex_unlock(&gInitMutex);
Jason Sams03855bb2011-01-25 00:26:25 -0800431 }
Jason Sams5c68a712010-12-24 14:38:39 -0800432 LOGV("Context::~Context done");
Jason Samsd19f10d2009-05-22 14:03:28 -0700433}
434
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700435void Context::setSurface(uint32_t w, uint32_t h, RsNativeWindow sur) {
Jason Sams704ff642010-02-09 16:05:07 -0800436 rsAssert(mIsGraphicsContext);
Jason Sams803626f2011-04-06 17:52:23 -0700437 mHal.funcs.setSurface(this, w, h, sur);
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800438
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700439 mHasSurface = sur != NULL;
Jason Sams803626f2011-04-06 17:52:23 -0700440 mWidth = w;
441 mHeight = h;
Jason Sams3bc47d42009-11-12 15:10:25 -0800442
Jason Sams803626f2011-04-06 17:52:23 -0700443 if (mWidth && mHeight) {
Jason Samsf603d212010-05-14 15:30:29 -0700444 mStateVertex.updateSize(this);
Alex Sakhartchouk10ed049352011-07-19 17:50:29 -0700445 mFBOCache.updateSize();
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800446 }
447}
448
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800449void Context::pause() {
Jason Sams704ff642010-02-09 16:05:07 -0800450 rsAssert(mIsGraphicsContext);
Jason Sams65e7aa52009-09-24 17:38:20 -0700451 mPaused = true;
452}
453
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800454void Context::resume() {
Jason Sams704ff642010-02-09 16:05:07 -0800455 rsAssert(mIsGraphicsContext);
Jason Sams65e7aa52009-09-24 17:38:20 -0700456 mPaused = false;
457}
458
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800459void Context::setRootScript(Script *s) {
Jason Sams704ff642010-02-09 16:05:07 -0800460 rsAssert(mIsGraphicsContext);
Jason Samsd19f10d2009-05-22 14:03:28 -0700461 mRootScript.set(s);
462}
463
Jason Samsa17af042010-11-17 15:29:32 -0800464void Context::setProgramStore(ProgramStore *pfs) {
Jason Sams704ff642010-02-09 16:05:07 -0800465 rsAssert(mIsGraphicsContext);
Jason Sams9c54bdb2009-06-17 16:52:59 -0700466 if (pfs == NULL) {
467 mFragmentStore.set(mStateFragmentStore.mDefault);
468 } else {
469 mFragmentStore.set(pfs);
470 }
Jason Samsd19f10d2009-05-22 14:03:28 -0700471}
472
Jason Samsa17af042010-11-17 15:29:32 -0800473void Context::setProgramFragment(ProgramFragment *pf) {
Jason Sams704ff642010-02-09 16:05:07 -0800474 rsAssert(mIsGraphicsContext);
Jason Sams9c54bdb2009-06-17 16:52:59 -0700475 if (pf == NULL) {
476 mFragment.set(mStateFragment.mDefault);
477 } else {
478 mFragment.set(pf);
479 }
Jason Sams9bee51c2009-08-05 13:57:03 -0700480}
481
Jason Samsa17af042010-11-17 15:29:32 -0800482void Context::setProgramRaster(ProgramRaster *pr) {
Jason Sams704ff642010-02-09 16:05:07 -0800483 rsAssert(mIsGraphicsContext);
Jason Samsebfb4362009-09-23 13:57:02 -0700484 if (pr == NULL) {
485 mRaster.set(mStateRaster.mDefault);
486 } else {
487 mRaster.set(pr);
488 }
489}
490
Jason Samsa17af042010-11-17 15:29:32 -0800491void Context::setProgramVertex(ProgramVertex *pv) {
Jason Sams704ff642010-02-09 16:05:07 -0800492 rsAssert(mIsGraphicsContext);
Jason Sams9c54bdb2009-06-17 16:52:59 -0700493 if (pv == NULL) {
494 mVertex.set(mStateVertex.mDefault);
495 } else {
496 mVertex.set(pv);
497 }
Jason Samsd19f10d2009-05-22 14:03:28 -0700498}
499
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800500void Context::setFont(Font *f) {
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700501 rsAssert(mIsGraphicsContext);
502 if (f == NULL) {
503 mFont.set(mStateFont.mDefault);
504 } else {
505 mFont.set(f);
506 }
507}
508
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800509void Context::assignName(ObjectBase *obj, const char *name, uint32_t len) {
Jason Sams3eaa3382009-06-10 15:04:38 -0700510 rsAssert(!obj->getName());
Jason Samsd5680f92009-06-10 18:39:40 -0700511 obj->setName(name, len);
Jason Sams3eaa3382009-06-10 15:04:38 -0700512 mNames.add(obj);
513}
514
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800515void Context::removeName(ObjectBase *obj) {
516 for (size_t ct=0; ct < mNames.size(); ct++) {
Jason Sams3eaa3382009-06-10 15:04:38 -0700517 if (obj == mNames[ct]) {
518 mNames.removeAt(ct);
519 return;
520 }
521 }
522}
523
Jason Samsedbfabd2011-05-17 15:01:29 -0700524RsMessageToClientType Context::peekMessageToClient(size_t *receiveLen, uint32_t *subID) {
525 return (RsMessageToClientType)mIO.getClientHeader(receiveLen, subID);
Jason Sams1c415172010-11-08 17:06:46 -0800526}
527
Jason Samsedbfabd2011-05-17 15:01:29 -0700528RsMessageToClientType Context::getMessageToClient(void *data, size_t *receiveLen, uint32_t *subID, size_t bufferLen) {
529 return (RsMessageToClientType)mIO.getClientPayload(data, receiveLen, subID, bufferLen);
Jason Sams516c3192009-10-06 13:58:47 -0700530}
531
Jason Samsadd9d962010-11-22 16:20:16 -0800532bool Context::sendMessageToClient(const void *data, RsMessageToClientType cmdID,
533 uint32_t subID, size_t len, bool waitForSpace) const {
Jason Samsedbfabd2011-05-17 15:01:29 -0700534
535 return mIO.sendToClient(cmdID, subID, data, len, waitForSpace);
Jason Sams516c3192009-10-06 13:58:47 -0700536}
537
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800538void Context::initToClient() {
539 while (!mRunning) {
Jason Sams516c3192009-10-06 13:58:47 -0700540 usleep(100);
541 }
542}
543
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800544void Context::deinitToClient() {
Jason Samsedbfabd2011-05-17 15:01:29 -0700545 mIO.clientShutdown();
Jason Sams516c3192009-10-06 13:58:47 -0700546}
Jason Sams730ee652009-08-18 17:07:09 -0700547
Jason Samsadd9d962010-11-22 16:20:16 -0800548void Context::setError(RsError e, const char *msg) const {
Jason Sams156cce62010-03-03 13:03:18 -0800549 mError = e;
Jason Sams1c415172010-11-08 17:06:46 -0800550 sendMessageToClient(msg, RS_MESSAGE_TO_CLIENT_ERROR, e, strlen(msg) + 1, true);
Jason Sams156cce62010-03-03 13:03:18 -0800551}
552
553
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800554void Context::dumpDebug() const {
Jason Sams9dab6672009-11-24 12:26:35 -0800555 LOGE("RS Context debug %p", this);
556 LOGE("RS Context debug");
557
Jason Sams9dab6672009-11-24 12:26:35 -0800558 LOGE(" RS width %i, height %i", mWidth, mHeight);
Jason Sams11c8af92010-10-13 15:31:10 -0700559 LOGE(" RS running %i, exit %i, paused %i", mRunning, mExit, mPaused);
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700560 LOGE(" RS pThreadID %li, nativeThreadID %i", (long int)mThreadId, mNativeThreadId);
Jason Sams9dab6672009-11-24 12:26:35 -0800561}
Jason Samsd5680f92009-06-10 18:39:40 -0700562
Jason Samsd19f10d2009-05-22 14:03:28 -0700563///////////////////////////////////////////////////////////////////////////////////////////
Jason Samsa09f11d2009-06-04 17:58:03 -0700564//
Jason Samsd19f10d2009-05-22 14:03:28 -0700565
566namespace android {
567namespace renderscript {
568
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800569void rsi_ContextFinish(Context *rsc) {
Jason Sams96ed4cf2010-06-15 12:15:57 -0700570}
Jason Samsd19f10d2009-05-22 14:03:28 -0700571
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800572void rsi_ContextBindRootScript(Context *rsc, RsScript vs) {
Jason Samsd19f10d2009-05-22 14:03:28 -0700573 Script *s = static_cast<Script *>(vs);
574 rsc->setRootScript(s);
575}
576
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800577void rsi_ContextBindSampler(Context *rsc, uint32_t slot, RsSampler vs) {
Jason Samsd19f10d2009-05-22 14:03:28 -0700578 Sampler *s = static_cast<Sampler *>(vs);
579
580 if (slot > RS_MAX_SAMPLER_SLOT) {
581 LOGE("Invalid sampler slot");
582 return;
583 }
584
585 s->bindToContext(&rsc->mStateSampler, slot);
586}
587
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800588void rsi_ContextBindProgramStore(Context *rsc, RsProgramStore vpfs) {
Jason Sams54db59c2010-05-13 18:30:11 -0700589 ProgramStore *pfs = static_cast<ProgramStore *>(vpfs);
Jason Samsa17af042010-11-17 15:29:32 -0800590 rsc->setProgramStore(pfs);
Jason Samsd19f10d2009-05-22 14:03:28 -0700591}
592
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800593void rsi_ContextBindProgramFragment(Context *rsc, RsProgramFragment vpf) {
Jason Samsd19f10d2009-05-22 14:03:28 -0700594 ProgramFragment *pf = static_cast<ProgramFragment *>(vpf);
Jason Samsa17af042010-11-17 15:29:32 -0800595 rsc->setProgramFragment(pf);
Jason Samsd19f10d2009-05-22 14:03:28 -0700596}
597
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800598void rsi_ContextBindProgramRaster(Context *rsc, RsProgramRaster vpr) {
Jason Samsebfb4362009-09-23 13:57:02 -0700599 ProgramRaster *pr = static_cast<ProgramRaster *>(vpr);
Jason Samsa17af042010-11-17 15:29:32 -0800600 rsc->setProgramRaster(pr);
Jason Samsebfb4362009-09-23 13:57:02 -0700601}
602
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800603void rsi_ContextBindProgramVertex(Context *rsc, RsProgramVertex vpv) {
Jason Samsd19f10d2009-05-22 14:03:28 -0700604 ProgramVertex *pv = static_cast<ProgramVertex *>(vpv);
Jason Samsa17af042010-11-17 15:29:32 -0800605 rsc->setProgramVertex(pv);
Jason Samsd19f10d2009-05-22 14:03:28 -0700606}
607
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800608void rsi_ContextBindFont(Context *rsc, RsFont vfont) {
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700609 Font *font = static_cast<Font *>(vfont);
610 rsc->setFont(font);
611}
612
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700613void rsi_AssignName(Context *rsc, RsObjectBase obj, const char *name, size_t name_length) {
Jason Sams3eaa3382009-06-10 15:04:38 -0700614 ObjectBase *ob = static_cast<ObjectBase *>(obj);
Alex Sakhartchouke7c4a752011-04-06 10:57:51 -0700615 rsc->assignName(ob, name, name_length);
Jason Sams3eaa3382009-06-10 15:04:38 -0700616}
Jason Samsd19f10d2009-05-22 14:03:28 -0700617
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800618void rsi_ObjDestroy(Context *rsc, void *optr) {
Jason Sams3b9c52a2010-10-14 17:48:46 -0700619 ObjectBase *ob = static_cast<ObjectBase *>(optr);
Jason Sams7ce033d2009-08-18 14:14:24 -0700620 rsc->removeName(ob);
Jason Sams07ae4062009-08-27 20:23:34 -0700621 ob->decUserRef();
Jason Sams7ce033d2009-08-18 14:14:24 -0700622}
623
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800624void rsi_ContextPause(Context *rsc) {
Jason Sams65e7aa52009-09-24 17:38:20 -0700625 rsc->pause();
626}
627
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800628void rsi_ContextResume(Context *rsc) {
Jason Sams65e7aa52009-09-24 17:38:20 -0700629 rsc->resume();
630}
631
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700632void rsi_ContextSetSurface(Context *rsc, uint32_t w, uint32_t h, RsNativeWindow sur) {
Mathias Agopian128ce4b2010-02-12 14:04:35 -0800633 rsc->setSurface(w, h, sur);
Jason Sams3bc47d42009-11-12 15:10:25 -0800634}
635
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800636void rsi_ContextSetPriority(Context *rsc, int32_t p) {
Jason Sams7d787b42009-11-15 12:14:26 -0800637 rsc->setPriority(p);
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800638}
639
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800640void rsi_ContextDump(Context *rsc, int32_t bits) {
Jason Sams715333b2009-11-17 17:26:46 -0800641 ObjectBase::dumpAll(rsc);
642}
643
Jason Sams5c68a712010-12-24 14:38:39 -0800644void rsi_ContextDestroyWorker(Context *rsc) {
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700645 rsc->destroyWorkerThreadResources();
Jason Sams5c68a712010-12-24 14:38:39 -0800646}
647
Jason Samsc5765372011-04-28 18:26:48 -0700648void rsi_ContextDestroy(Context *rsc) {
649 LOGV("rsContextDestroy %p", rsc);
Jason Sams5c68a712010-12-24 14:38:39 -0800650 rsContextDestroyWorker(rsc);
Jason Sams546f01b2010-12-09 12:19:46 -0800651 delete rsc;
Jason Samsc5765372011-04-28 18:26:48 -0700652 LOGV("rsContextDestroy 2 %p", rsc);
Jason Sams546f01b2010-12-09 12:19:46 -0800653}
654
Jason Samsd19f10d2009-05-22 14:03:28 -0700655
Jason Samsc5765372011-04-28 18:26:48 -0700656RsMessageToClientType rsi_ContextPeekMessage(Context *rsc,
Jason Sams65bdaf12011-04-26 14:50:00 -0700657 size_t * receiveLen, size_t receiveLen_length,
Jason Samsedbfabd2011-05-17 15:01:29 -0700658 uint32_t * subID, size_t subID_length) {
659 return rsc->peekMessageToClient(receiveLen, subID);
Jason Sams1c415172010-11-08 17:06:46 -0800660}
661
Jason Samsc5765372011-04-28 18:26:48 -0700662RsMessageToClientType rsi_ContextGetMessage(Context *rsc, void * data, size_t data_length,
Jason Sams65bdaf12011-04-26 14:50:00 -0700663 size_t * receiveLen, size_t receiveLen_length,
Jason Samsedbfabd2011-05-17 15:01:29 -0700664 uint32_t * subID, size_t subID_length) {
Jason Sams65bdaf12011-04-26 14:50:00 -0700665 rsAssert(subID_length == sizeof(uint32_t));
666 rsAssert(receiveLen_length == sizeof(size_t));
Jason Samsedbfabd2011-05-17 15:01:29 -0700667 return rsc->getMessageToClient(data, receiveLen, subID, data_length);
Jason Sams516c3192009-10-06 13:58:47 -0700668}
669
Jason Samsc5765372011-04-28 18:26:48 -0700670void rsi_ContextInitToClient(Context *rsc) {
Jason Sams516c3192009-10-06 13:58:47 -0700671 rsc->initToClient();
672}
673
Jason Samsc5765372011-04-28 18:26:48 -0700674void rsi_ContextDeinitToClient(Context *rsc) {
Jason Sams516c3192009-10-06 13:58:47 -0700675 rsc->deinitToClient();
676}
677
Jason Samsc5765372011-04-28 18:26:48 -0700678}
679}
680
Jason Samsd9d37cc2011-05-18 17:36:02 -0700681RsContext rsContextCreate(RsDevice vdev, uint32_t version) {
682 LOGV("rsContextCreate %p", vdev);
683 Device * dev = static_cast<Device *>(vdev);
684 Context *rsc = Context::createContext(dev, NULL);
685 return rsc;
686}
687
688RsContext rsContextCreateGL(RsDevice vdev, uint32_t version,
689 RsSurfaceConfig sc, uint32_t dpi) {
690 LOGV("rsContextCreateGL %p", vdev);
691 Device * dev = static_cast<Device *>(vdev);
692 Context *rsc = Context::createContext(dev, &sc);
Jason Samsfb06b7a2011-07-13 16:09:42 -0700693 if (rsc) {
694 rsc->setDPI(dpi);
695 }
Jason Samsd9d37cc2011-05-18 17:36:02 -0700696 LOGV("rsContextCreateGL ret %p ", rsc);
697 return rsc;
698}
699
Alex Sakhartchouk581cc642010-10-27 14:10:07 -0700700// Only to be called at a3d load time, before object is visible to user
701// not thread safe
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800702void rsaGetName(RsContext con, void * obj, const char **name) {
Alex Sakhartchouk581cc642010-10-27 14:10:07 -0700703 ObjectBase *ob = static_cast<ObjectBase *>(obj);
704 (*name) = ob->getName();
705}