blob: bffe3c09c406004fa89382afbdaa1a52f814e07f [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;
Jason Samsbfc78912011-08-12 15:05:15 -0700248 bool doWait = true;
249
250 uint64_t targetTime = rsc->getTime();
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700251 while (!rsc->mExit) {
Jason Samsbfc78912011-08-12 15:05:15 -0700252 uint64_t waitTime = 0;
253 uint64_t now = rsc->getTime();
254 if (now < targetTime) {
255 waitTime = targetTime - now;
256 } else {
257 doWait = false;
258 }
259
260 mDraw |= rsc->mIO.playCoreCommands(rsc, doWait, waitTime);
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700261 mDraw &= (rsc->mRootScript.get() != NULL);
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700262 mDraw &= rsc->mHasSurface;
Jason Samsd19f10d2009-05-22 14:03:28 -0700263
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700264 if (mDraw && rsc->mIsGraphicsContext) {
Jason Samsbfc78912011-08-12 15:05:15 -0700265 uint64_t delay = rsc->runRootScript() * 1000000;
266 targetTime = rsc->getTime() + delay;
267 doWait = delay != 0;
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700268
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700269 if (rsc->props.mLogVisual) {
270 rsc->displayDebugStats();
271 }
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700272
Jason Samsbfc78912011-08-12 15:05:15 -0700273 mDraw = !rsc->mPaused;
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700274 rsc->timerSet(RS_TIMER_CLEAR_SWAP);
275 rsc->mHal.funcs.swap(rsc);
276 rsc->timerFrame();
277 rsc->timerSet(RS_TIMER_INTERNAL);
278 rsc->timerPrint();
279 rsc->timerReset();
280 }
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700281 }
Jason Samsd19f10d2009-05-22 14:03:28 -0700282
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700283 LOGV("%p, RS Thread exiting", rsc);
Jason Samsa9e7a052009-09-25 14:51:22 -0700284
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700285 if (rsc->mIsGraphicsContext) {
286 pthread_mutex_lock(&gInitMutex);
287 rsc->deinitEGL();
288 pthread_mutex_unlock(&gInitMutex);
289 }
Jason Sams71362202009-10-27 14:44:31 -0700290
Jason Samsbe8ac6a2011-04-21 11:46:50 -0700291 LOGV("%p, RS Thread exited", rsc);
292 return NULL;
Jason Samsd19f10d2009-05-22 14:03:28 -0700293}
294
Jason Sams5c68a712010-12-24 14:38:39 -0800295void Context::destroyWorkerThreadResources() {
Jason Samsc55de662011-01-23 17:48:45 -0800296 //LOGV("destroyWorkerThreadResources 1");
Jason Sams38f8d9d2011-01-27 00:14:13 -0800297 ObjectBase::zeroAllUserRef(this);
Jason Sams5c68a712010-12-24 14:38:39 -0800298 if (mIsGraphicsContext) {
299 mRaster.clear();
300 mFragment.clear();
301 mVertex.clear();
302 mFragmentStore.clear();
303 mFont.clear();
304 mRootScript.clear();
305 mStateRaster.deinit(this);
306 mStateVertex.deinit(this);
307 mStateFragment.deinit(this);
308 mStateFragmentStore.deinit(this);
309 mStateFont.deinit(this);
Alex Sakhartchouk2f6964f2011-05-13 14:53:34 -0700310 mFBOCache.deinit(this);
Jason Sams5c68a712010-12-24 14:38:39 -0800311 }
Jason Samsc55de662011-01-23 17:48:45 -0800312 //LOGV("destroyWorkerThreadResources 2");
Jason Sams84035ff2011-01-09 16:09:51 -0800313 mExit = true;
Jason Sams5c68a712010-12-24 14:38:39 -0800314}
315
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800316void Context::setPriority(int32_t p) {
Jason Sams7d787b42009-11-15 12:14:26 -0800317 // Note: If we put this in the proper "background" policy
318 // the wallpapers can become completly unresponsive at times.
319 // This is probably not what we want for something the user is actively
320 // looking at.
Jason Samsb9d5c572009-12-09 11:05:45 -0800321 mThreadPriority = p;
Jason Sams7d787b42009-11-15 12:14:26 -0800322#if 0
323 SchedPolicy pol = SP_FOREGROUND;
324 if (p > 0) {
325 pol = SP_BACKGROUND;
326 }
327 if (!set_sched_policy(mNativeThreadId, pol)) {
328 // success; reset the priority as well
329 }
330#else
Jason Sams8e6c17f2010-07-19 15:38:19 -0700331 setpriority(PRIO_PROCESS, mNativeThreadId, p);
Jason Sams7d787b42009-11-15 12:14:26 -0800332#endif
333}
334
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800335Context::Context() {
Jason Samsd5f06302010-11-03 14:27:11 -0700336 mDev = NULL;
Jason Samsd19f10d2009-05-22 14:03:28 -0700337 mRunning = false;
338 mExit = false;
Jason Sams65e7aa52009-09-24 17:38:20 -0700339 mPaused = false;
Jason Samsa9e7a052009-09-25 14:51:22 -0700340 mObjHead = NULL;
Jason Sams156cce62010-03-03 13:03:18 -0800341 mError = RS_ERROR_NONE;
Stephen Hines4382467a2011-08-01 15:02:34 -0700342 mTargetSdkVersion = 14;
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700343 mDPI = 96;
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700344 mIsContextLite = false;
Jason Samsd5f06302010-11-03 14:27:11 -0700345}
346
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800347Context * Context::createContext(Device *dev, const RsSurfaceConfig *sc) {
Jason Samsd5f06302010-11-03 14:27:11 -0700348 Context * rsc = new Context();
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700349
Jason Samsd5f06302010-11-03 14:27:11 -0700350 if (!rsc->initContext(dev, sc)) {
351 delete rsc;
352 return NULL;
353 }
354 return rsc;
355}
356
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700357Context * Context::createContextLite() {
358 Context * rsc = new Context();
359 rsc->mIsContextLite = true;
360 return rsc;
361}
362
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800363bool Context::initContext(Device *dev, const RsSurfaceConfig *sc) {
Jason Samsd5f06302010-11-03 14:27:11 -0700364 pthread_mutex_lock(&gInitMutex);
365
Jason Samsedbfabd2011-05-17 15:01:29 -0700366 mIO.init();
367
Jason Samsd5f06302010-11-03 14:27:11 -0700368 dev->addContext(this);
369 mDev = dev;
Jason Sams11c8af92010-10-13 15:31:10 -0700370 if (sc) {
371 mUserSurfaceConfig = *sc;
372 } else {
373 memset(&mUserSurfaceConfig, 0, sizeof(mUserSurfaceConfig));
374 }
Jason Sams156cce62010-03-03 13:03:18 -0800375
Jason Sams11c8af92010-10-13 15:31:10 -0700376 mIsGraphicsContext = sc != NULL;
Jason Samsd19f10d2009-05-22 14:03:28 -0700377
Jason Sams8ad00102009-06-04 14:35:01 -0700378 int status;
379 pthread_attr_t threadAttr;
380
Jason Sams41c19db92009-10-15 16:47:31 -0700381 pthread_mutex_unlock(&gInitMutex);
382
383 // Global init done at this point.
Jason Sams462d11b2009-06-19 16:03:18 -0700384
Jason Sams8ad00102009-06-04 14:35:01 -0700385 status = pthread_attr_init(&threadAttr);
386 if (status) {
387 LOGE("Failed to init thread attribute.");
Jason Samsd5f06302010-11-03 14:27:11 -0700388 return false;
Jason Sams8ad00102009-06-04 14:35:01 -0700389 }
390
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700391 mHasSurface = false;
Jason Samsf29ca502009-06-23 12:22:47 -0700392
Jason Samsf4d16062009-08-19 12:17:14 -0700393 timerInit();
Jason Samsd3f2eaf2009-09-24 15:42:52 -0700394 timerSet(RS_TIMER_INTERNAL);
Jason Sams730ee652009-08-18 17:07:09 -0700395
Jason Sams8ad00102009-06-04 14:35:01 -0700396 status = pthread_create(&mThreadId, &threadAttr, threadProc, this);
Jason Samsd19f10d2009-05-22 14:03:28 -0700397 if (status) {
398 LOGE("Failed to start rs context thread.");
Jason Samsd5f06302010-11-03 14:27:11 -0700399 return false;
Jason Sams8e6c17f2010-07-19 15:38:19 -0700400 }
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800401 while (!mRunning && (mError == RS_ERROR_NONE)) {
Jason Samsc7f4e412010-07-20 15:09:00 -0700402 usleep(100);
403 }
404
Jason Samsd5f06302010-11-03 14:27:11 -0700405 if (mError != RS_ERROR_NONE) {
Jason Sams80e29cf2011-03-18 17:08:54 -0700406 LOGE("Errors during thread init");
Jason Samsd5f06302010-11-03 14:27:11 -0700407 return false;
408 }
409
Jason Sams8ad00102009-06-04 14:35:01 -0700410 pthread_attr_destroy(&threadAttr);
Jason Samsd5f06302010-11-03 14:27:11 -0700411 return true;
Jason Samsd19f10d2009-05-22 14:03:28 -0700412}
413
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800414Context::~Context() {
Jason Samsf5b45962009-08-25 14:49:07 -0700415 LOGV("Context::~Context");
Jason Sams84035ff2011-01-09 16:09:51 -0800416
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700417 if (!mIsContextLite) {
418 mIO.coreFlush();
419 rsAssert(mExit);
420 mExit = true;
421 mPaused = false;
422 void *res;
Jason Samsd19f10d2009-05-22 14:03:28 -0700423
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700424 mIO.shutdown();
425 int status = pthread_join(mThreadId, &res);
Jason Samsd19f10d2009-05-22 14:03:28 -0700426
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700427 if (mHal.funcs.shutdownDriver) {
428 mHal.funcs.shutdownDriver(this);
429 }
430
431 // Global structure cleanup.
432 pthread_mutex_lock(&gInitMutex);
433 if (mDev) {
434 mDev->removeContext(this);
435 mDev = NULL;
436 }
437 pthread_mutex_unlock(&gInitMutex);
Jason Sams03855bb2011-01-25 00:26:25 -0800438 }
Jason Sams5c68a712010-12-24 14:38:39 -0800439 LOGV("Context::~Context done");
Jason Samsd19f10d2009-05-22 14:03:28 -0700440}
441
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700442void Context::setSurface(uint32_t w, uint32_t h, RsNativeWindow sur) {
Jason Sams704ff642010-02-09 16:05:07 -0800443 rsAssert(mIsGraphicsContext);
Jason Sams803626f2011-04-06 17:52:23 -0700444 mHal.funcs.setSurface(this, w, h, sur);
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800445
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700446 mHasSurface = sur != NULL;
Jason Sams803626f2011-04-06 17:52:23 -0700447 mWidth = w;
448 mHeight = h;
Jason Sams3bc47d42009-11-12 15:10:25 -0800449
Jason Sams803626f2011-04-06 17:52:23 -0700450 if (mWidth && mHeight) {
Jason Samsf603d212010-05-14 15:30:29 -0700451 mStateVertex.updateSize(this);
Alex Sakhartchouk10ed049352011-07-19 17:50:29 -0700452 mFBOCache.updateSize();
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800453 }
454}
455
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800456void Context::pause() {
Jason Sams704ff642010-02-09 16:05:07 -0800457 rsAssert(mIsGraphicsContext);
Jason Sams65e7aa52009-09-24 17:38:20 -0700458 mPaused = true;
459}
460
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800461void Context::resume() {
Jason Sams704ff642010-02-09 16:05:07 -0800462 rsAssert(mIsGraphicsContext);
Jason Sams65e7aa52009-09-24 17:38:20 -0700463 mPaused = false;
464}
465
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800466void Context::setRootScript(Script *s) {
Jason Sams704ff642010-02-09 16:05:07 -0800467 rsAssert(mIsGraphicsContext);
Jason Samsd19f10d2009-05-22 14:03:28 -0700468 mRootScript.set(s);
469}
470
Jason Samsa17af042010-11-17 15:29:32 -0800471void Context::setProgramStore(ProgramStore *pfs) {
Jason Sams704ff642010-02-09 16:05:07 -0800472 rsAssert(mIsGraphicsContext);
Jason Sams9c54bdb2009-06-17 16:52:59 -0700473 if (pfs == NULL) {
474 mFragmentStore.set(mStateFragmentStore.mDefault);
475 } else {
476 mFragmentStore.set(pfs);
477 }
Jason Samsd19f10d2009-05-22 14:03:28 -0700478}
479
Jason Samsa17af042010-11-17 15:29:32 -0800480void Context::setProgramFragment(ProgramFragment *pf) {
Jason Sams704ff642010-02-09 16:05:07 -0800481 rsAssert(mIsGraphicsContext);
Jason Sams9c54bdb2009-06-17 16:52:59 -0700482 if (pf == NULL) {
483 mFragment.set(mStateFragment.mDefault);
484 } else {
485 mFragment.set(pf);
486 }
Jason Sams9bee51c2009-08-05 13:57:03 -0700487}
488
Jason Samsa17af042010-11-17 15:29:32 -0800489void Context::setProgramRaster(ProgramRaster *pr) {
Jason Sams704ff642010-02-09 16:05:07 -0800490 rsAssert(mIsGraphicsContext);
Jason Samsebfb4362009-09-23 13:57:02 -0700491 if (pr == NULL) {
492 mRaster.set(mStateRaster.mDefault);
493 } else {
494 mRaster.set(pr);
495 }
496}
497
Jason Samsa17af042010-11-17 15:29:32 -0800498void Context::setProgramVertex(ProgramVertex *pv) {
Jason Sams704ff642010-02-09 16:05:07 -0800499 rsAssert(mIsGraphicsContext);
Jason Sams9c54bdb2009-06-17 16:52:59 -0700500 if (pv == NULL) {
501 mVertex.set(mStateVertex.mDefault);
502 } else {
503 mVertex.set(pv);
504 }
Jason Samsd19f10d2009-05-22 14:03:28 -0700505}
506
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800507void Context::setFont(Font *f) {
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700508 rsAssert(mIsGraphicsContext);
509 if (f == NULL) {
510 mFont.set(mStateFont.mDefault);
511 } else {
512 mFont.set(f);
513 }
514}
515
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800516void Context::assignName(ObjectBase *obj, const char *name, uint32_t len) {
Jason Sams3eaa3382009-06-10 15:04:38 -0700517 rsAssert(!obj->getName());
Jason Samsd5680f92009-06-10 18:39:40 -0700518 obj->setName(name, len);
Jason Sams3eaa3382009-06-10 15:04:38 -0700519 mNames.add(obj);
520}
521
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800522void Context::removeName(ObjectBase *obj) {
523 for (size_t ct=0; ct < mNames.size(); ct++) {
Jason Sams3eaa3382009-06-10 15:04:38 -0700524 if (obj == mNames[ct]) {
525 mNames.removeAt(ct);
526 return;
527 }
528 }
529}
530
Jason Samsedbfabd2011-05-17 15:01:29 -0700531RsMessageToClientType Context::peekMessageToClient(size_t *receiveLen, uint32_t *subID) {
532 return (RsMessageToClientType)mIO.getClientHeader(receiveLen, subID);
Jason Sams1c415172010-11-08 17:06:46 -0800533}
534
Jason Samsedbfabd2011-05-17 15:01:29 -0700535RsMessageToClientType Context::getMessageToClient(void *data, size_t *receiveLen, uint32_t *subID, size_t bufferLen) {
536 return (RsMessageToClientType)mIO.getClientPayload(data, receiveLen, subID, bufferLen);
Jason Sams516c3192009-10-06 13:58:47 -0700537}
538
Jason Samsadd9d962010-11-22 16:20:16 -0800539bool Context::sendMessageToClient(const void *data, RsMessageToClientType cmdID,
540 uint32_t subID, size_t len, bool waitForSpace) const {
Jason Samsedbfabd2011-05-17 15:01:29 -0700541
542 return mIO.sendToClient(cmdID, subID, data, len, waitForSpace);
Jason Sams516c3192009-10-06 13:58:47 -0700543}
544
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800545void Context::initToClient() {
546 while (!mRunning) {
Jason Sams516c3192009-10-06 13:58:47 -0700547 usleep(100);
548 }
549}
550
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800551void Context::deinitToClient() {
Jason Samsedbfabd2011-05-17 15:01:29 -0700552 mIO.clientShutdown();
Jason Sams516c3192009-10-06 13:58:47 -0700553}
Jason Sams730ee652009-08-18 17:07:09 -0700554
Jason Samsadd9d962010-11-22 16:20:16 -0800555void Context::setError(RsError e, const char *msg) const {
Jason Sams156cce62010-03-03 13:03:18 -0800556 mError = e;
Jason Sams1c415172010-11-08 17:06:46 -0800557 sendMessageToClient(msg, RS_MESSAGE_TO_CLIENT_ERROR, e, strlen(msg) + 1, true);
Jason Sams156cce62010-03-03 13:03:18 -0800558}
559
560
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800561void Context::dumpDebug() const {
Jason Sams9dab6672009-11-24 12:26:35 -0800562 LOGE("RS Context debug %p", this);
563 LOGE("RS Context debug");
564
Jason Sams9dab6672009-11-24 12:26:35 -0800565 LOGE(" RS width %i, height %i", mWidth, mHeight);
Jason Sams11c8af92010-10-13 15:31:10 -0700566 LOGE(" RS running %i, exit %i, paused %i", mRunning, mExit, mPaused);
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700567 LOGE(" RS pThreadID %li, nativeThreadID %i", (long int)mThreadId, mNativeThreadId);
Jason Sams9dab6672009-11-24 12:26:35 -0800568}
Jason Samsd5680f92009-06-10 18:39:40 -0700569
Jason Samsd19f10d2009-05-22 14:03:28 -0700570///////////////////////////////////////////////////////////////////////////////////////////
Jason Samsa09f11d2009-06-04 17:58:03 -0700571//
Jason Samsd19f10d2009-05-22 14:03:28 -0700572
573namespace android {
574namespace renderscript {
575
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800576void rsi_ContextFinish(Context *rsc) {
Jason Sams96ed4cf2010-06-15 12:15:57 -0700577}
Jason Samsd19f10d2009-05-22 14:03:28 -0700578
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800579void rsi_ContextBindRootScript(Context *rsc, RsScript vs) {
Jason Samsd19f10d2009-05-22 14:03:28 -0700580 Script *s = static_cast<Script *>(vs);
581 rsc->setRootScript(s);
582}
583
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800584void rsi_ContextBindSampler(Context *rsc, uint32_t slot, RsSampler vs) {
Jason Samsd19f10d2009-05-22 14:03:28 -0700585 Sampler *s = static_cast<Sampler *>(vs);
586
587 if (slot > RS_MAX_SAMPLER_SLOT) {
588 LOGE("Invalid sampler slot");
589 return;
590 }
591
592 s->bindToContext(&rsc->mStateSampler, slot);
593}
594
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800595void rsi_ContextBindProgramStore(Context *rsc, RsProgramStore vpfs) {
Jason Sams54db59c2010-05-13 18:30:11 -0700596 ProgramStore *pfs = static_cast<ProgramStore *>(vpfs);
Jason Samsa17af042010-11-17 15:29:32 -0800597 rsc->setProgramStore(pfs);
Jason Samsd19f10d2009-05-22 14:03:28 -0700598}
599
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800600void rsi_ContextBindProgramFragment(Context *rsc, RsProgramFragment vpf) {
Jason Samsd19f10d2009-05-22 14:03:28 -0700601 ProgramFragment *pf = static_cast<ProgramFragment *>(vpf);
Jason Samsa17af042010-11-17 15:29:32 -0800602 rsc->setProgramFragment(pf);
Jason Samsd19f10d2009-05-22 14:03:28 -0700603}
604
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800605void rsi_ContextBindProgramRaster(Context *rsc, RsProgramRaster vpr) {
Jason Samsebfb4362009-09-23 13:57:02 -0700606 ProgramRaster *pr = static_cast<ProgramRaster *>(vpr);
Jason Samsa17af042010-11-17 15:29:32 -0800607 rsc->setProgramRaster(pr);
Jason Samsebfb4362009-09-23 13:57:02 -0700608}
609
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800610void rsi_ContextBindProgramVertex(Context *rsc, RsProgramVertex vpv) {
Jason Samsd19f10d2009-05-22 14:03:28 -0700611 ProgramVertex *pv = static_cast<ProgramVertex *>(vpv);
Jason Samsa17af042010-11-17 15:29:32 -0800612 rsc->setProgramVertex(pv);
Jason Samsd19f10d2009-05-22 14:03:28 -0700613}
614
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800615void rsi_ContextBindFont(Context *rsc, RsFont vfont) {
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700616 Font *font = static_cast<Font *>(vfont);
617 rsc->setFont(font);
618}
619
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700620void rsi_AssignName(Context *rsc, RsObjectBase obj, const char *name, size_t name_length) {
Jason Sams3eaa3382009-06-10 15:04:38 -0700621 ObjectBase *ob = static_cast<ObjectBase *>(obj);
Alex Sakhartchouke7c4a752011-04-06 10:57:51 -0700622 rsc->assignName(ob, name, name_length);
Jason Sams3eaa3382009-06-10 15:04:38 -0700623}
Jason Samsd19f10d2009-05-22 14:03:28 -0700624
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800625void rsi_ObjDestroy(Context *rsc, void *optr) {
Jason Sams3b9c52a2010-10-14 17:48:46 -0700626 ObjectBase *ob = static_cast<ObjectBase *>(optr);
Jason Sams7ce033d2009-08-18 14:14:24 -0700627 rsc->removeName(ob);
Jason Sams07ae4062009-08-27 20:23:34 -0700628 ob->decUserRef();
Jason Sams7ce033d2009-08-18 14:14:24 -0700629}
630
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800631void rsi_ContextPause(Context *rsc) {
Jason Sams65e7aa52009-09-24 17:38:20 -0700632 rsc->pause();
633}
634
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800635void rsi_ContextResume(Context *rsc) {
Jason Sams65e7aa52009-09-24 17:38:20 -0700636 rsc->resume();
637}
638
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700639void rsi_ContextSetSurface(Context *rsc, uint32_t w, uint32_t h, RsNativeWindow sur) {
Mathias Agopian128ce4b2010-02-12 14:04:35 -0800640 rsc->setSurface(w, h, sur);
Jason Sams3bc47d42009-11-12 15:10:25 -0800641}
642
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800643void rsi_ContextSetPriority(Context *rsc, int32_t p) {
Jason Sams7d787b42009-11-15 12:14:26 -0800644 rsc->setPriority(p);
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800645}
646
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800647void rsi_ContextDump(Context *rsc, int32_t bits) {
Jason Sams715333b2009-11-17 17:26:46 -0800648 ObjectBase::dumpAll(rsc);
649}
650
Jason Sams5c68a712010-12-24 14:38:39 -0800651void rsi_ContextDestroyWorker(Context *rsc) {
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700652 rsc->destroyWorkerThreadResources();
Jason Sams5c68a712010-12-24 14:38:39 -0800653}
654
Jason Samsc5765372011-04-28 18:26:48 -0700655void rsi_ContextDestroy(Context *rsc) {
656 LOGV("rsContextDestroy %p", rsc);
Jason Sams5c68a712010-12-24 14:38:39 -0800657 rsContextDestroyWorker(rsc);
Jason Sams546f01b2010-12-09 12:19:46 -0800658 delete rsc;
Jason Samsc5765372011-04-28 18:26:48 -0700659 LOGV("rsContextDestroy 2 %p", rsc);
Jason Sams546f01b2010-12-09 12:19:46 -0800660}
661
Jason Samsd19f10d2009-05-22 14:03:28 -0700662
Jason Samsc5765372011-04-28 18:26:48 -0700663RsMessageToClientType rsi_ContextPeekMessage(Context *rsc,
Jason Sams65bdaf12011-04-26 14:50:00 -0700664 size_t * receiveLen, size_t receiveLen_length,
Jason Samsedbfabd2011-05-17 15:01:29 -0700665 uint32_t * subID, size_t subID_length) {
666 return rsc->peekMessageToClient(receiveLen, subID);
Jason Sams1c415172010-11-08 17:06:46 -0800667}
668
Jason Samsc5765372011-04-28 18:26:48 -0700669RsMessageToClientType rsi_ContextGetMessage(Context *rsc, void * data, size_t data_length,
Jason Sams65bdaf12011-04-26 14:50:00 -0700670 size_t * receiveLen, size_t receiveLen_length,
Jason Samsedbfabd2011-05-17 15:01:29 -0700671 uint32_t * subID, size_t subID_length) {
Jason Sams65bdaf12011-04-26 14:50:00 -0700672 rsAssert(subID_length == sizeof(uint32_t));
673 rsAssert(receiveLen_length == sizeof(size_t));
Jason Samsedbfabd2011-05-17 15:01:29 -0700674 return rsc->getMessageToClient(data, receiveLen, subID, data_length);
Jason Sams516c3192009-10-06 13:58:47 -0700675}
676
Jason Samsc5765372011-04-28 18:26:48 -0700677void rsi_ContextInitToClient(Context *rsc) {
Jason Sams516c3192009-10-06 13:58:47 -0700678 rsc->initToClient();
679}
680
Jason Samsc5765372011-04-28 18:26:48 -0700681void rsi_ContextDeinitToClient(Context *rsc) {
Jason Sams516c3192009-10-06 13:58:47 -0700682 rsc->deinitToClient();
683}
684
Jason Samsc5765372011-04-28 18:26:48 -0700685}
686}
687
Stephen Hines4382467a2011-08-01 15:02:34 -0700688RsContext rsContextCreate(RsDevice vdev, uint32_t version,
689 uint32_t sdkVersion) {
Jason Samsd9d37cc2011-05-18 17:36:02 -0700690 LOGV("rsContextCreate %p", vdev);
691 Device * dev = static_cast<Device *>(vdev);
692 Context *rsc = Context::createContext(dev, NULL);
Stephen Hines4382467a2011-08-01 15:02:34 -0700693 if (rsc) {
694 rsc->setTargetSdkVersion(sdkVersion);
695 }
Jason Samsd9d37cc2011-05-18 17:36:02 -0700696 return rsc;
697}
698
699RsContext rsContextCreateGL(RsDevice vdev, uint32_t version,
Stephen Hines4382467a2011-08-01 15:02:34 -0700700 uint32_t sdkVersion, RsSurfaceConfig sc,
701 uint32_t dpi) {
Jason Samsd9d37cc2011-05-18 17:36:02 -0700702 LOGV("rsContextCreateGL %p", vdev);
703 Device * dev = static_cast<Device *>(vdev);
704 Context *rsc = Context::createContext(dev, &sc);
Jason Samsfb06b7a2011-07-13 16:09:42 -0700705 if (rsc) {
Stephen Hines4382467a2011-08-01 15:02:34 -0700706 rsc->setTargetSdkVersion(sdkVersion);
Jason Samsfb06b7a2011-07-13 16:09:42 -0700707 rsc->setDPI(dpi);
708 }
Jason Samsd9d37cc2011-05-18 17:36:02 -0700709 LOGV("rsContextCreateGL ret %p ", rsc);
710 return rsc;
711}
712
Alex Sakhartchouk581cc642010-10-27 14:10:07 -0700713// Only to be called at a3d load time, before object is visible to user
714// not thread safe
Alex Sakhartchouked9f2102010-11-09 17:00:54 -0800715void rsaGetName(RsContext con, void * obj, const char **name) {
Alex Sakhartchouk581cc642010-10-27 14:10:07 -0700716 ObjectBase *ob = static_cast<ObjectBase *>(obj);
717 (*name) = ob->getName();
718}