blob: 199cc5a36051f6d8148b3aee3e0c930cd0010af8 [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#ifndef ANDROID_RS_CONTEXT_H
18#define ANDROID_RS_CONTEXT_H
19
Jason Sams399bfce2009-07-13 12:20:31 -070020#include "rsUtils.h"
Jason Samsd19f10d2009-05-22 14:03:28 -070021#include "rsType.h"
Jason Samsd19f10d2009-05-22 14:03:28 -070022#include "rsAllocation.h"
Jason Sams7c878f32009-06-30 14:13:04 -070023#include "rsMesh.h"
Alex Sakhartchoukd0f5bd12011-01-31 14:53:24 -080024
Jason Samse4a06c52011-03-16 16:29:28 -070025#include "rs_hal.h"
26
Alex Sakhartchoukd0f5bd12011-01-31 14:53:24 -080027#include "rsMutex.h"
28#include "rsThreadIO.h"
Jason Samsfcf72312011-04-20 15:09:01 -070029#include "rsMatrix4x4.h"
Jason Samsd19f10d2009-05-22 14:03:28 -070030#include "rsDevice.h"
31#include "rsScriptC.h"
Jason Samsd19f10d2009-05-22 14:03:28 -070032#include "rsAdapter.h"
33#include "rsSampler.h"
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -070034#include "rsFont.h"
Jason Samsd19f10d2009-05-22 14:03:28 -070035#include "rsProgramFragment.h"
Jason Sams54db59c2010-05-13 18:30:11 -070036#include "rsProgramStore.h"
Jason Samsebfb4362009-09-23 13:57:02 -070037#include "rsProgramRaster.h"
Jason Samsd19f10d2009-05-22 14:03:28 -070038#include "rsProgramVertex.h"
Alex Sakhartchouk8e90f2b2011-04-01 14:19:01 -070039#include "rsFBOCache.h"
Jason Samsd19f10d2009-05-22 14:03:28 -070040
41#include "rsgApiStructs.h"
42#include "rsLocklessFifo.h"
43
Jason Samsd19f10d2009-05-22 14:03:28 -070044// ---------------------------------------------------------------------------
45namespace android {
Mathias Agopian000479f2010-02-09 17:46:37 -080046
Jason Samsd19f10d2009-05-22 14:03:28 -070047namespace renderscript {
48
Jason Samsf166d9b2010-09-30 18:15:52 -070049#if 0
50#define CHECK_OBJ(o) { \
51 GET_TLS(); \
Alex Sakhartchouked9f2102010-11-09 17:00:54 -080052 if (!ObjectBase::isValid(rsc, (const ObjectBase *)o)) { \
Jason Samsf166d9b2010-09-30 18:15:52 -070053 LOGE("Bad object %p at %s, %i", o, __FILE__, __LINE__); \
54 } \
55}
56#define CHECK_OBJ_OR_NULL(o) { \
57 GET_TLS(); \
Alex Sakhartchouked9f2102010-11-09 17:00:54 -080058 if (o && !ObjectBase::isValid(rsc, (const ObjectBase *)o)) { \
Jason Samsf166d9b2010-09-30 18:15:52 -070059 LOGE("Bad object %p at %s, %i", o, __FILE__, __LINE__); \
60 } \
61}
62#else
63#define CHECK_OBJ(o)
64#define CHECK_OBJ_OR_NULL(o)
65#endif
66
Alex Sakhartchouked9f2102010-11-09 17:00:54 -080067class Context {
Jason Samsd19f10d2009-05-22 14:03:28 -070068public:
Jason Samse4a06c52011-03-16 16:29:28 -070069 struct Hal {
70 void * drv;
71
72 RsdHalFunctions funcs;
73 };
74 Hal mHal;
75
Jason Samsd5f06302010-11-03 14:27:11 -070076 static Context * createContext(Device *, const RsSurfaceConfig *sc);
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -070077 static Context * createContextLite();
Jason Samsd19f10d2009-05-22 14:03:28 -070078 ~Context();
79
Jason Sams41c19db92009-10-15 16:47:31 -070080 static pthread_mutex_t gInitMutex;
Stephen Hines1ac9da62011-01-07 15:11:30 -080081 // Library mutex (for providing thread-safe calls from the runtime)
82 static pthread_mutex_t gLibMutex;
Jason Sams41c19db92009-10-15 16:47:31 -070083
Jason Samsa17af042010-11-17 15:29:32 -080084 class PushState {
85 public:
86 PushState(Context *);
87 ~PushState();
88
89 private:
90 ObjectBaseRef<ProgramFragment> mFragment;
91 ObjectBaseRef<ProgramVertex> mVertex;
92 ObjectBaseRef<ProgramStore> mStore;
93 ObjectBaseRef<ProgramRaster> mRaster;
94 ObjectBaseRef<Font> mFont;
95 Context *mRsc;
96 };
97
Jason Sams11c8af92010-10-13 15:31:10 -070098 RsSurfaceConfig mUserSurfaceConfig;
Jason Sams462d11b2009-06-19 16:03:18 -070099
Jason Samsd19f10d2009-05-22 14:03:28 -0700100 ElementState mStateElement;
101 TypeState mStateType;
102 SamplerState mStateSampler;
103 ProgramFragmentState mStateFragment;
Jason Sams54db59c2010-05-13 18:30:11 -0700104 ProgramStoreState mStateFragmentStore;
Jason Samsebfb4362009-09-23 13:57:02 -0700105 ProgramRasterState mStateRaster;
Jason Samsd19f10d2009-05-22 14:03:28 -0700106 ProgramVertexState mStateVertex;
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700107 FontState mStateFont;
Jason Samsd19f10d2009-05-22 14:03:28 -0700108
Jason Samsd19f10d2009-05-22 14:03:28 -0700109 ScriptCState mScriptC;
Alex Sakhartchouk8e90f2b2011-04-01 14:19:01 -0700110 FBOCache mFBOCache;
Jason Samsd19f10d2009-05-22 14:03:28 -0700111
Jason Samsd19f10d2009-05-22 14:03:28 -0700112 void swapBuffers();
113 void setRootScript(Script *);
Jason Samsa17af042010-11-17 15:29:32 -0800114 void setProgramRaster(ProgramRaster *);
115 void setProgramVertex(ProgramVertex *);
116 void setProgramFragment(ProgramFragment *);
117 void setProgramStore(ProgramStore *);
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700118 void setFont(Font *);
Jason Samsd19f10d2009-05-22 14:03:28 -0700119
120 void updateSurface(void *sur);
121
Jason Samsa17af042010-11-17 15:29:32 -0800122 ProgramFragment * getProgramFragment() {return mFragment.get();}
123 ProgramStore * getProgramStore() {return mFragmentStore.get();}
124 ProgramRaster * getProgramRaster() {return mRaster.get();}
125 ProgramVertex * getProgramVertex() {return mVertex.get();}
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700126 Font * getFont() {return mFont.get();}
Jason Samsd19f10d2009-05-22 14:03:28 -0700127
Jason Sams156cce62010-03-03 13:03:18 -0800128 bool setupCheck();
Alex Sakhartchoukfeede2a2010-10-01 10:54:06 -0700129 void setupProgramStore();
Jason Samsd19f10d2009-05-22 14:03:28 -0700130
Jason Sams65e7aa52009-09-24 17:38:20 -0700131 void pause();
132 void resume();
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700133 void setSurface(uint32_t w, uint32_t h, RsNativeWindow sur);
Jason Sams7d787b42009-11-15 12:14:26 -0800134 void setPriority(int32_t p);
Jason Sams5c68a712010-12-24 14:38:39 -0800135 void destroyWorkerThreadResources();
Jason Sams65e7aa52009-09-24 17:38:20 -0700136
Jason Samsd5680f92009-06-10 18:39:40 -0700137 void assignName(ObjectBase *obj, const char *name, uint32_t len);
Jason Sams3eaa3382009-06-10 15:04:38 -0700138 void removeName(ObjectBase *obj);
Jason Sams9c54bdb2009-06-17 16:52:59 -0700139
Jason Samsedbfabd2011-05-17 15:01:29 -0700140 RsMessageToClientType peekMessageToClient(size_t *receiveLen, uint32_t *subID);
141 RsMessageToClientType getMessageToClient(void *data, size_t *receiveLen, uint32_t *subID, size_t bufferLen);
Jason Samsadd9d962010-11-22 16:20:16 -0800142 bool sendMessageToClient(const void *data, RsMessageToClientType cmdID, uint32_t subID, size_t len, bool waitForSpace) const;
Jason Samsf17bccc2010-05-28 18:23:22 -0700143 uint32_t runScript(Script *s);
Jason Sams516c3192009-10-06 13:58:47 -0700144
145 void initToClient();
146 void deinitToClient();
147
Jason Sams9c54bdb2009-06-17 16:52:59 -0700148 ProgramFragment * getDefaultProgramFragment() const {
149 return mStateFragment.mDefault.get();
150 }
151 ProgramVertex * getDefaultProgramVertex() const {
152 return mStateVertex.mDefault.get();
153 }
Jason Sams54db59c2010-05-13 18:30:11 -0700154 ProgramStore * getDefaultProgramStore() const {
Jason Sams9c54bdb2009-06-17 16:52:59 -0700155 return mStateFragmentStore.mDefault.get();
156 }
Jason Samsebfb4362009-09-23 13:57:02 -0700157 ProgramRaster * getDefaultProgramRaster() const {
158 return mStateRaster.mDefault.get();
159 }
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700160 Font* getDefaultFont() const {
161 return mStateFont.mDefault.get();
162 }
Jason Sams9c54bdb2009-06-17 16:52:59 -0700163
Jason Samsf603d212010-05-14 15:30:29 -0700164 uint32_t getWidth() const {return mWidth;}
165 uint32_t getHeight() const {return mHeight;}
Jason Sams40a29e82009-08-10 14:55:26 -0700166
Jason Samsadd9d962010-11-22 16:20:16 -0800167 mutable ThreadIO mIO;
Jason Samsbc948de2009-08-17 18:35:48 -0700168
Jason Samsf4d16062009-08-19 12:17:14 -0700169 // Timers
170 enum Timers {
171 RS_TIMER_IDLE,
172 RS_TIMER_INTERNAL,
173 RS_TIMER_SCRIPT,
174 RS_TIMER_CLEAR_SWAP,
175 _RS_TIMER_TOTAL
176 };
177 uint64_t getTime() const;
178 void timerInit();
179 void timerReset();
180 void timerSet(Timers);
181 void timerPrint();
Jason Sams2525a812009-09-03 15:43:13 -0700182 void timerFrame();
Jason Samsf4d16062009-08-19 12:17:14 -0700183
Jason Sams66b27712009-09-25 15:25:00 -0700184 struct {
185 bool mLogTimes;
186 bool mLogScripts;
187 bool mLogObjects;
Jason Sams5dad8b42009-12-15 19:10:11 -0800188 bool mLogShaders;
Alex Sakhartchouk4378f112010-09-29 09:49:13 -0700189 bool mLogShadersAttr;
190 bool mLogShadersUniforms;
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700191 bool mLogVisual;
Jason Sams66b27712009-09-25 15:25:00 -0700192 } props;
Joe Onorato9ac2c662009-09-23 16:37:36 -0700193
Jason Sams5316b9e2011-09-13 15:41:01 -0700194 mutable struct {
195 bool inRoot;
196 const char *command;
197 const char *file;
198 uint32_t line;
199 } watchdog;
200 static void printWatchdogInfo(void *ctx);
201 void setWatchdogGL(const char *cmd, uint32_t line, const char *file) const {
202 watchdog.command = cmd;
203 watchdog.file = file;
204 watchdog.line = line;
205 }
206
Jason Sams9dab6672009-11-24 12:26:35 -0800207 void dumpDebug() const;
Jason Samsadd9d962010-11-22 16:20:16 -0800208 void setError(RsError e, const char *msg = NULL) const;
Jason Sams9dab6672009-11-24 12:26:35 -0800209
Jason Samsa9e7a052009-09-25 14:51:22 -0700210 mutable const ObjectBase * mObjHead;
211
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700212 uint32_t getDPI() const {return mDPI;}
213 void setDPI(uint32_t dpi) {mDPI = dpi;}
Jason Sams8e6c17f2010-07-19 15:38:19 -0700214
Stephen Hines4382467a2011-08-01 15:02:34 -0700215 uint32_t getTargetSdkVersion() const {return mTargetSdkVersion;}
216 void setTargetSdkVersion(uint32_t sdkVer) {mTargetSdkVersion = sdkVer;}
217
Jason Samsd19f10d2009-05-22 14:03:28 -0700218 Device *mDev;
Jason Sams803626f2011-04-06 17:52:23 -0700219protected:
Jason Samsd19f10d2009-05-22 14:03:28 -0700220
Stephen Hines4382467a2011-08-01 15:02:34 -0700221 uint32_t mTargetSdkVersion;
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700222 uint32_t mDPI;
Jason Sams3bc47d42009-11-12 15:10:25 -0800223 uint32_t mWidth;
224 uint32_t mHeight;
Jason Samsb9d5c572009-12-09 11:05:45 -0800225 int32_t mThreadPriority;
Jason Sams704ff642010-02-09 16:05:07 -0800226 bool mIsGraphicsContext;
Jason Sams3bc47d42009-11-12 15:10:25 -0800227
Jason Samsd19f10d2009-05-22 14:03:28 -0700228 bool mRunning;
229 bool mExit;
Jason Sams65e7aa52009-09-24 17:38:20 -0700230 bool mPaused;
Jason Samsadd9d962010-11-22 16:20:16 -0800231 mutable RsError mError;
Jason Samsd19f10d2009-05-22 14:03:28 -0700232
Jason Samsd19f10d2009-05-22 14:03:28 -0700233 pthread_t mThreadId;
Jason Sams7d787b42009-11-15 12:14:26 -0800234 pid_t mNativeThreadId;
Jason Samsd19f10d2009-05-22 14:03:28 -0700235
236 ObjectBaseRef<Script> mRootScript;
237 ObjectBaseRef<ProgramFragment> mFragment;
238 ObjectBaseRef<ProgramVertex> mVertex;
Jason Sams54db59c2010-05-13 18:30:11 -0700239 ObjectBaseRef<ProgramStore> mFragmentStore;
Jason Samsebfb4362009-09-23 13:57:02 -0700240 ObjectBaseRef<ProgramRaster> mRaster;
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700241 ObjectBaseRef<Font> mFont;
Jason Sams730ee652009-08-18 17:07:09 -0700242
Alex Sakhartchouk6de55502010-08-03 12:03:16 -0700243 void displayDebugStats();
244
Jason Samsd19f10d2009-05-22 14:03:28 -0700245private:
246 Context();
Jason Samsd5f06302010-11-03 14:27:11 -0700247 bool initContext(Device *, const RsSurfaceConfig *sc);
Jason Samsd19f10d2009-05-22 14:03:28 -0700248
Jason Samsd5f06302010-11-03 14:27:11 -0700249
250 bool initGLThread();
Jason Sams71362202009-10-27 14:44:31 -0700251 void deinitEGL();
Jason Samsd19f10d2009-05-22 14:03:28 -0700252
Jason Samsb9d5c572009-12-09 11:05:45 -0800253 uint32_t runRootScript();
Jason Samsd19f10d2009-05-22 14:03:28 -0700254
255 static void * threadProc(void *);
Jason Sams8e6c17f2010-07-19 15:38:19 -0700256 static void * helperThreadProc(void *);
Jason Samsd19f10d2009-05-22 14:03:28 -0700257
Alex Sakhartchouk6c72eec2011-05-17 12:32:47 -0700258 bool mHasSurface;
Alex Sakhartchouk17a8a192011-06-03 10:18:01 -0700259 bool mIsContextLite;
Jason Sams3eaa3382009-06-10 15:04:38 -0700260
261 Vector<ObjectBase *> mNames;
Jason Samsf4d16062009-08-19 12:17:14 -0700262
263 uint64_t mTimers[_RS_TIMER_TOTAL];
264 Timers mTimerActive;
265 uint64_t mTimeLast;
Jason Sams2525a812009-09-03 15:43:13 -0700266 uint64_t mTimeFrame;
267 uint64_t mTimeLastFrame;
Jason Samsb9d5c572009-12-09 11:05:45 -0800268 uint32_t mTimeMSLastFrame;
269 uint32_t mTimeMSLastScript;
270 uint32_t mTimeMSLastSwap;
Alex Sakhartchouk76322af2010-10-05 13:23:55 -0700271 uint32_t mAverageFPSFrameCount;
272 uint64_t mAverageFPSStartTime;
273 uint32_t mAverageFPS;
Jason Samsd19f10d2009-05-22 14:03:28 -0700274};
275
Alex Sakhartchoukd0f5bd12011-01-31 14:53:24 -0800276} // renderscript
277} // android
Jason Samsd19f10d2009-05-22 14:03:28 -0700278#endif