Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 1 | /* |
Alex Sakhartchouk | a04e30d | 2011-04-29 16:49:08 -0700 | [diff] [blame] | 2 | * Copyright (C) 2011 The Android Open Source Project |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 3 | * |
| 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 Sams | a557780 | 2009-07-13 12:20:31 -0700 | [diff] [blame] | 20 | #include "rsUtils.h" |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 21 | #include "rs_hal.h" |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 22 | #include <string.h> |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 23 | |
Alex Sakhartchouk | 77d9f4b | 2011-01-31 14:53:24 -0800 | [diff] [blame] | 24 | #include "rsThreadIO.h" |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 25 | #include "rsScriptC.h" |
Jason Sams | dbe66d6 | 2012-09-17 13:54:41 -0700 | [diff] [blame] | 26 | #include "rsScriptGroup.h" |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 27 | #include "rsSampler.h" |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 28 | |
Stephen Hines | 574854b | 2013-07-10 08:29:51 -0700 | [diff] [blame] | 29 | #if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB) |
Tim Murray | fa85e91 | 2013-05-23 13:19:36 -0700 | [diff] [blame] | 30 | #define ATRACE_TAG ATRACE_TAG_RS |
| 31 | #include "utils/Trace.h" |
Stephen Hines | 574854b | 2013-07-10 08:29:51 -0700 | [diff] [blame] | 32 | #else |
| 33 | #define ATRACE_ENABLED(...) false |
| 34 | #define ATRACE_NAME(...) |
| 35 | #define ATRACE_CALL(...) |
Tim Murray | fa85e91 | 2013-05-23 13:19:36 -0700 | [diff] [blame] | 36 | #endif |
| 37 | |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 38 | #ifndef RS_COMPATIBILITY_LIB |
Alex Sakhartchouk | d3e0ad4 | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 39 | #include "rsFont.h" |
Jason Sams | 9e0afb5 | 2011-10-31 13:23:43 -0700 | [diff] [blame] | 40 | #include "rsPath.h" |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 41 | #include "rsProgramFragment.h" |
Jason Sams | ccc010b | 2010-05-13 18:30:11 -0700 | [diff] [blame] | 42 | #include "rsProgramStore.h" |
Jason Sams | 5fd09d8 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 43 | #include "rsProgramRaster.h" |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 44 | #include "rsProgramVertex.h" |
Alex Sakhartchouk | 7d9c5ff | 2011-04-01 14:19:01 -0700 | [diff] [blame] | 45 | #include "rsFBOCache.h" |
Tim Murray | fa85e91 | 2013-05-23 13:19:36 -0700 | [diff] [blame] | 46 | |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 47 | #endif |
| 48 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 49 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 50 | // --------------------------------------------------------------------------- |
| 51 | namespace android { |
Mathias Agopian | d4c25e3 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 52 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 53 | namespace renderscript { |
| 54 | |
Alex Sakhartchouk | 4edf030 | 2012-03-09 10:47:27 -0800 | [diff] [blame] | 55 | class Device; |
| 56 | |
Jason Sams | 605048a | 2010-09-30 18:15:52 -0700 | [diff] [blame] | 57 | #if 0 |
| 58 | #define CHECK_OBJ(o) { \ |
| 59 | GET_TLS(); \ |
Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 60 | if (!ObjectBase::isValid(rsc, (const ObjectBase *)o)) { \ |
Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 61 | ALOGE("Bad object %p at %s, %i", o, __FILE__, __LINE__); \ |
Jason Sams | 605048a | 2010-09-30 18:15:52 -0700 | [diff] [blame] | 62 | } \ |
| 63 | } |
| 64 | #define CHECK_OBJ_OR_NULL(o) { \ |
| 65 | GET_TLS(); \ |
Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 66 | if (o && !ObjectBase::isValid(rsc, (const ObjectBase *)o)) { \ |
Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 67 | ALOGE("Bad object %p at %s, %i", o, __FILE__, __LINE__); \ |
Jason Sams | 605048a | 2010-09-30 18:15:52 -0700 | [diff] [blame] | 68 | } \ |
| 69 | } |
| 70 | #else |
| 71 | #define CHECK_OBJ(o) |
| 72 | #define CHECK_OBJ_OR_NULL(o) |
| 73 | #endif |
| 74 | |
Tim Murray | fa85e91 | 2013-05-23 13:19:36 -0700 | [diff] [blame] | 75 | |
| 76 | |
Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 77 | class Context { |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 78 | public: |
Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 79 | struct Hal { |
| 80 | void * drv; |
| 81 | |
| 82 | RsdHalFunctions funcs; |
| 83 | }; |
| 84 | Hal mHal; |
| 85 | |
Stephen Hines | cca3d6c | 2013-04-15 01:06:39 -0700 | [diff] [blame] | 86 | static Context * createContext(Device *, const RsSurfaceConfig *sc, |
| 87 | RsContextType ct = RS_CONTEXT_TYPE_NORMAL, |
Tim Murray | 84e3dea | 2013-09-09 16:12:51 -0700 | [diff] [blame] | 88 | uint32_t flags = 0); |
Alex Sakhartchouk | b81a0eb | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 89 | static Context * createContextLite(); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 90 | ~Context(); |
| 91 | |
Jason Sams | 4961cce | 2013-04-11 16:11:46 -0700 | [diff] [blame] | 92 | static pthread_mutex_t gMessageMutex; |
Jason Sams | fb03a22 | 2009-10-15 16:47:31 -0700 | [diff] [blame] | 93 | static pthread_mutex_t gInitMutex; |
Stephen Hines | ca3f09c | 2011-01-07 15:11:30 -0800 | [diff] [blame] | 94 | // Library mutex (for providing thread-safe calls from the runtime) |
| 95 | static pthread_mutex_t gLibMutex; |
Jason Sams | fb03a22 | 2009-10-15 16:47:31 -0700 | [diff] [blame] | 96 | |
Jason Sams | 6070925 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 97 | class PushState { |
| 98 | public: |
| 99 | PushState(Context *); |
| 100 | ~PushState(); |
| 101 | |
| 102 | private: |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 103 | #ifndef RS_COMPATIBILITY_LIB |
Jason Sams | 6070925 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 104 | ObjectBaseRef<ProgramFragment> mFragment; |
| 105 | ObjectBaseRef<ProgramVertex> mVertex; |
| 106 | ObjectBaseRef<ProgramStore> mStore; |
| 107 | ObjectBaseRef<ProgramRaster> mRaster; |
| 108 | ObjectBaseRef<Font> mFont; |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 109 | #endif |
Jason Sams | 6070925 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 110 | Context *mRsc; |
| 111 | }; |
| 112 | |
Jason Sams | 6b8552a | 2010-10-13 15:31:10 -0700 | [diff] [blame] | 113 | RsSurfaceConfig mUserSurfaceConfig; |
Jason Sams | e576910 | 2009-06-19 16:03:18 -0700 | [diff] [blame] | 114 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 115 | ElementState mStateElement; |
| 116 | TypeState mStateType; |
| 117 | SamplerState mStateSampler; |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 118 | |
| 119 | ScriptCState mScriptC; |
| 120 | bool isSynchronous() {return mSynchronous;} |
| 121 | bool setupCheck(); |
| 122 | |
| 123 | #ifndef RS_COMPATIBILITY_LIB |
| 124 | FBOCache mFBOCache; |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 125 | ProgramFragmentState mStateFragment; |
Jason Sams | ccc010b | 2010-05-13 18:30:11 -0700 | [diff] [blame] | 126 | ProgramStoreState mStateFragmentStore; |
Jason Sams | 5fd09d8 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 127 | ProgramRasterState mStateRaster; |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 128 | ProgramVertexState mStateVertex; |
Alex Sakhartchouk | d3e0ad4 | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 129 | FontState mStateFont; |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 130 | |
Tim Murray | 4d252d6 | 2012-11-29 14:37:59 -0800 | [diff] [blame] | 131 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 132 | void swapBuffers(); |
| 133 | void setRootScript(Script *); |
Jason Sams | 6070925 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 134 | void setProgramRaster(ProgramRaster *); |
| 135 | void setProgramVertex(ProgramVertex *); |
| 136 | void setProgramFragment(ProgramFragment *); |
| 137 | void setProgramStore(ProgramStore *); |
Alex Sakhartchouk | d3e0ad4 | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 138 | void setFont(Font *); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 139 | |
| 140 | void updateSurface(void *sur); |
| 141 | |
Jason Sams | 6070925 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 142 | ProgramFragment * getProgramFragment() {return mFragment.get();} |
| 143 | ProgramStore * getProgramStore() {return mFragmentStore.get();} |
| 144 | ProgramRaster * getProgramRaster() {return mRaster.get();} |
| 145 | ProgramVertex * getProgramVertex() {return mVertex.get();} |
Alex Sakhartchouk | d3e0ad4 | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 146 | Font * getFont() {return mFont.get();} |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 147 | |
Alex Sakhartchouk | 889fe50 | 2010-10-01 10:54:06 -0700 | [diff] [blame] | 148 | void setupProgramStore(); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 149 | |
Jason Sams | 86f1b23 | 2009-09-24 17:38:20 -0700 | [diff] [blame] | 150 | void pause(); |
| 151 | void resume(); |
Alex Sakhartchouk | 7257c7e | 2011-05-17 12:32:47 -0700 | [diff] [blame] | 152 | void setSurface(uint32_t w, uint32_t h, RsNativeWindow sur); |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 153 | #endif |
Jason Sams | f274827 | 2013-11-26 18:10:59 -0800 | [diff] [blame] | 154 | void finish(); |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 155 | |
Jason Sams | 1583244 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 156 | void setPriority(int32_t p); |
Jason Sams | 741aac9 | 2010-12-24 14:38:39 -0800 | [diff] [blame] | 157 | void destroyWorkerThreadResources(); |
Jason Sams | 86f1b23 | 2009-09-24 17:38:20 -0700 | [diff] [blame] | 158 | |
Jason Sams | a4a54e4 | 2009-06-10 18:39:40 -0700 | [diff] [blame] | 159 | void assignName(ObjectBase *obj, const char *name, uint32_t len); |
Jason Sams | a0a1b6f | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 160 | void removeName(ObjectBase *obj); |
Jason Sams | 8ce125b | 2009-06-17 16:52:59 -0700 | [diff] [blame] | 161 | |
Jason Sams | 1a4efa3 | 2011-05-17 15:01:29 -0700 | [diff] [blame] | 162 | RsMessageToClientType peekMessageToClient(size_t *receiveLen, uint32_t *subID); |
| 163 | RsMessageToClientType getMessageToClient(void *data, size_t *receiveLen, uint32_t *subID, size_t bufferLen); |
Jason Sams | 87319de | 2010-11-22 16:20:16 -0800 | [diff] [blame] | 164 | bool sendMessageToClient(const void *data, RsMessageToClientType cmdID, uint32_t subID, size_t len, bool waitForSpace) const; |
Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 165 | uint32_t runScript(Script *s); |
Jason Sams | 8c401ef | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 166 | |
| 167 | void initToClient(); |
| 168 | void deinitToClient(); |
| 169 | |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 170 | #ifndef RS_COMPATIBILITY_LIB |
Jason Sams | 8ce125b | 2009-06-17 16:52:59 -0700 | [diff] [blame] | 171 | ProgramFragment * getDefaultProgramFragment() const { |
| 172 | return mStateFragment.mDefault.get(); |
| 173 | } |
| 174 | ProgramVertex * getDefaultProgramVertex() const { |
| 175 | return mStateVertex.mDefault.get(); |
| 176 | } |
Jason Sams | ccc010b | 2010-05-13 18:30:11 -0700 | [diff] [blame] | 177 | ProgramStore * getDefaultProgramStore() const { |
Jason Sams | 8ce125b | 2009-06-17 16:52:59 -0700 | [diff] [blame] | 178 | return mStateFragmentStore.mDefault.get(); |
| 179 | } |
Jason Sams | 5fd09d8 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 180 | ProgramRaster * getDefaultProgramRaster() const { |
| 181 | return mStateRaster.mDefault.get(); |
| 182 | } |
Alex Sakhartchouk | d3e0ad4 | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 183 | Font* getDefaultFont() const { |
| 184 | return mStateFont.mDefault.get(); |
| 185 | } |
Jason Sams | 8ce125b | 2009-06-17 16:52:59 -0700 | [diff] [blame] | 186 | |
Jason Sams | 771565f | 2010-05-14 15:30:29 -0700 | [diff] [blame] | 187 | uint32_t getWidth() const {return mWidth;} |
| 188 | uint32_t getHeight() const {return mHeight;} |
Jason Sams | e579df4 | 2009-08-10 14:55:26 -0700 | [diff] [blame] | 189 | |
Alex Sakhartchouk | a74a8f6 | 2011-11-16 12:22:10 -0800 | [diff] [blame] | 190 | uint32_t getCurrentSurfaceWidth() const; |
| 191 | uint32_t getCurrentSurfaceHeight() const; |
| 192 | |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 193 | void setWatchdogGL(const char *cmd, uint32_t line, const char *file) const { |
| 194 | watchdog.command = cmd; |
| 195 | watchdog.file = file; |
| 196 | watchdog.line = line; |
| 197 | } |
| 198 | #endif |
| 199 | |
Jason Sams | 87319de | 2010-11-22 16:20:16 -0800 | [diff] [blame] | 200 | mutable ThreadIO mIO; |
Jason Sams | fcd3192 | 2009-08-17 18:35:48 -0700 | [diff] [blame] | 201 | |
Jason Sams | 24371d9 | 2009-08-19 12:17:14 -0700 | [diff] [blame] | 202 | // Timers |
| 203 | enum Timers { |
| 204 | RS_TIMER_IDLE, |
| 205 | RS_TIMER_INTERNAL, |
| 206 | RS_TIMER_SCRIPT, |
| 207 | RS_TIMER_CLEAR_SWAP, |
| 208 | _RS_TIMER_TOTAL |
| 209 | }; |
| 210 | uint64_t getTime() const; |
| 211 | void timerInit(); |
| 212 | void timerReset(); |
| 213 | void timerSet(Timers); |
| 214 | void timerPrint(); |
Jason Sams | 1d54f10 | 2009-09-03 15:43:13 -0700 | [diff] [blame] | 215 | void timerFrame(); |
Jason Sams | 24371d9 | 2009-08-19 12:17:14 -0700 | [diff] [blame] | 216 | |
Jason Sams | 1fddd90 | 2009-09-25 15:25:00 -0700 | [diff] [blame] | 217 | struct { |
| 218 | bool mLogTimes; |
| 219 | bool mLogScripts; |
| 220 | bool mLogObjects; |
Jason Sams | cd50653 | 2009-12-15 19:10:11 -0800 | [diff] [blame] | 221 | bool mLogShaders; |
Alex Sakhartchouk | 886f11a | 2010-09-29 09:49:13 -0700 | [diff] [blame] | 222 | bool mLogShadersAttr; |
| 223 | bool mLogShadersUniforms; |
Alex Sakhartchouk | 0cae59f | 2010-08-03 12:03:16 -0700 | [diff] [blame] | 224 | bool mLogVisual; |
Jason Sams | d1f7da6 | 2012-03-15 19:18:03 -0700 | [diff] [blame] | 225 | uint32_t mDebugMaxThreads; |
Jason Sams | 1fddd90 | 2009-09-25 15:25:00 -0700 | [diff] [blame] | 226 | } props; |
Joe Onorato | 76371ff | 2009-09-23 16:37:36 -0700 | [diff] [blame] | 227 | |
Jason Sams | 2382aba | 2011-09-13 15:41:01 -0700 | [diff] [blame] | 228 | mutable struct { |
| 229 | bool inRoot; |
| 230 | const char *command; |
| 231 | const char *file; |
| 232 | uint32_t line; |
| 233 | } watchdog; |
| 234 | static void printWatchdogInfo(void *ctx); |
Jason Sams | 2382aba | 2011-09-13 15:41:01 -0700 | [diff] [blame] | 235 | |
Jason Sams | 13e2634 | 2009-11-24 12:26:35 -0800 | [diff] [blame] | 236 | void dumpDebug() const; |
Jason Sams | 87319de | 2010-11-22 16:20:16 -0800 | [diff] [blame] | 237 | void setError(RsError e, const char *msg = NULL) const; |
Jason Sams | 13e2634 | 2009-11-24 12:26:35 -0800 | [diff] [blame] | 238 | |
Jason Sams | e514b45 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 239 | mutable const ObjectBase * mObjHead; |
| 240 | |
Alex Sakhartchouk | 7b3e9bd | 2011-03-16 19:28:25 -0700 | [diff] [blame] | 241 | uint32_t getDPI() const {return mDPI;} |
| 242 | void setDPI(uint32_t dpi) {mDPI = dpi;} |
Jason Sams | 7bf29dd | 2010-07-19 15:38:19 -0700 | [diff] [blame] | 243 | |
Stephen Hines | cbb0b8a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 244 | uint32_t getTargetSdkVersion() const {return mTargetSdkVersion;} |
| 245 | void setTargetSdkVersion(uint32_t sdkVer) {mTargetSdkVersion = sdkVer;} |
| 246 | |
Stephen Hines | cca3d6c | 2013-04-15 01:06:39 -0700 | [diff] [blame] | 247 | RsContextType getContextType() const { return mContextType; } |
| 248 | void setContextType(RsContextType ct) { mContextType = ct; } |
| 249 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 250 | Device *mDev; |
Jason Sams | 4b3de47 | 2011-04-06 17:52:23 -0700 | [diff] [blame] | 251 | protected: |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 252 | |
Stephen Hines | cbb0b8a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 253 | uint32_t mTargetSdkVersion; |
Alex Sakhartchouk | 7b3e9bd | 2011-03-16 19:28:25 -0700 | [diff] [blame] | 254 | uint32_t mDPI; |
Jason Sams | 613cad1 | 2009-11-12 15:10:25 -0800 | [diff] [blame] | 255 | uint32_t mWidth; |
| 256 | uint32_t mHeight; |
Jason Sams | 2dca84d | 2009-12-09 11:05:45 -0800 | [diff] [blame] | 257 | int32_t mThreadPriority; |
Jason Sams | 4820e8b | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 258 | bool mIsGraphicsContext; |
Jason Sams | 613cad1 | 2009-11-12 15:10:25 -0800 | [diff] [blame] | 259 | |
Tim Murray | 0e92fa3 | 2012-11-06 14:36:38 -0800 | [diff] [blame] | 260 | bool mForceCpu; |
| 261 | |
Stephen Hines | cca3d6c | 2013-04-15 01:06:39 -0700 | [diff] [blame] | 262 | RsContextType mContextType; |
| 263 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 264 | bool mRunning; |
| 265 | bool mExit; |
Jason Sams | 86f1b23 | 2009-09-24 17:38:20 -0700 | [diff] [blame] | 266 | bool mPaused; |
Jason Sams | 87319de | 2010-11-22 16:20:16 -0800 | [diff] [blame] | 267 | mutable RsError mError; |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 268 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 269 | pthread_t mThreadId; |
Jason Sams | 1583244 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 270 | pid_t mNativeThreadId; |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 271 | |
| 272 | ObjectBaseRef<Script> mRootScript; |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 273 | #ifndef RS_COMPATIBILITY_LIB |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 274 | ObjectBaseRef<ProgramFragment> mFragment; |
| 275 | ObjectBaseRef<ProgramVertex> mVertex; |
Jason Sams | ccc010b | 2010-05-13 18:30:11 -0700 | [diff] [blame] | 276 | ObjectBaseRef<ProgramStore> mFragmentStore; |
Jason Sams | 5fd09d8 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 277 | ObjectBaseRef<ProgramRaster> mRaster; |
Alex Sakhartchouk | d3e0ad4 | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 278 | ObjectBaseRef<Font> mFont; |
Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 279 | #endif |
Jason Sams | 5086938 | 2009-08-18 17:07:09 -0700 | [diff] [blame] | 280 | |
Alex Sakhartchouk | 0cae59f | 2010-08-03 12:03:16 -0700 | [diff] [blame] | 281 | void displayDebugStats(); |
| 282 | |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 283 | private: |
| 284 | Context(); |
Jason Sams | 5c1c79a | 2010-11-03 14:27:11 -0700 | [diff] [blame] | 285 | bool initContext(Device *, const RsSurfaceConfig *sc); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 286 | |
Tim Murray | 4d252d6 | 2012-11-29 14:37:59 -0800 | [diff] [blame] | 287 | bool mSynchronous; |
Jason Sams | 5c1c79a | 2010-11-03 14:27:11 -0700 | [diff] [blame] | 288 | bool initGLThread(); |
Jason Sams | 33b6e3b | 2009-10-27 14:44:31 -0700 | [diff] [blame] | 289 | void deinitEGL(); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 290 | |
Jason Sams | 2dca84d | 2009-12-09 11:05:45 -0800 | [diff] [blame] | 291 | uint32_t runRootScript(); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 292 | |
Tim Murray | 0c66f07 | 2012-10-23 14:05:02 -0700 | [diff] [blame] | 293 | static bool loadRuntime(const char* filename, Context* rsc); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 294 | static void * threadProc(void *); |
Jason Sams | 7bf29dd | 2010-07-19 15:38:19 -0700 | [diff] [blame] | 295 | static void * helperThreadProc(void *); |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 296 | |
Alex Sakhartchouk | 7257c7e | 2011-05-17 12:32:47 -0700 | [diff] [blame] | 297 | bool mHasSurface; |
Alex Sakhartchouk | b81a0eb | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 298 | bool mIsContextLite; |
Jason Sams | a0a1b6f | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 299 | |
| 300 | Vector<ObjectBase *> mNames; |
Jason Sams | 24371d9 | 2009-08-19 12:17:14 -0700 | [diff] [blame] | 301 | |
| 302 | uint64_t mTimers[_RS_TIMER_TOTAL]; |
| 303 | Timers mTimerActive; |
| 304 | uint64_t mTimeLast; |
Jason Sams | 1d54f10 | 2009-09-03 15:43:13 -0700 | [diff] [blame] | 305 | uint64_t mTimeFrame; |
| 306 | uint64_t mTimeLastFrame; |
Jason Sams | 2dca84d | 2009-12-09 11:05:45 -0800 | [diff] [blame] | 307 | uint32_t mTimeMSLastFrame; |
| 308 | uint32_t mTimeMSLastScript; |
| 309 | uint32_t mTimeMSLastSwap; |
Alex Sakhartchouk | c8fb69e | 2010-10-05 13:23:55 -0700 | [diff] [blame] | 310 | uint32_t mAverageFPSFrameCount; |
| 311 | uint64_t mAverageFPSStartTime; |
| 312 | uint32_t mAverageFPS; |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 313 | }; |
| 314 | |
Tim Murray | 397b0b1 | 2014-01-07 15:35:08 -0800 | [diff] [blame] | 315 | void LF_ObjDestroy_handcode(const Context *rsc, RsAsyncVoidPtr objPtr); |
| 316 | |
Alex Sakhartchouk | 77d9f4b | 2011-01-31 14:53:24 -0800 | [diff] [blame] | 317 | } // renderscript |
| 318 | } // android |
Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 319 | #endif |