Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 The Android Open Source Project |
| 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 | 399bfce | 2009-07-13 12:20:31 -0700 | [diff] [blame] | 20 | #include "rsUtils.h" |
| 21 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 22 | #include <ui/Surface.h> |
| 23 | |
Jason Sams | bc948de | 2009-08-17 18:35:48 -0700 | [diff] [blame] | 24 | #include "rsThreadIO.h" |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 25 | #include "rsType.h" |
| 26 | #include "rsMatrix.h" |
| 27 | #include "rsAllocation.h" |
Jason Sams | 1bada8c | 2009-08-09 17:01:55 -0700 | [diff] [blame] | 28 | #include "rsSimpleMesh.h" |
Jason Sams | 7c878f3 | 2009-06-30 14:13:04 -0700 | [diff] [blame] | 29 | #include "rsMesh.h" |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 30 | #include "rsDevice.h" |
| 31 | #include "rsScriptC.h" |
| 32 | #include "rsAllocation.h" |
| 33 | #include "rsAdapter.h" |
| 34 | #include "rsSampler.h" |
Jason Sams | ee41112 | 2009-07-21 12:20:54 -0700 | [diff] [blame] | 35 | #include "rsLight.h" |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 36 | #include "rsProgramFragment.h" |
| 37 | #include "rsProgramFragmentStore.h" |
Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 38 | #include "rsProgramRaster.h" |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 39 | #include "rsProgramVertex.h" |
| 40 | |
| 41 | #include "rsgApiStructs.h" |
| 42 | #include "rsLocklessFifo.h" |
| 43 | |
| 44 | |
| 45 | // --------------------------------------------------------------------------- |
| 46 | namespace android { |
| 47 | namespace renderscript { |
| 48 | |
Jason Sams | 9bee51c | 2009-08-05 13:57:03 -0700 | [diff] [blame] | 49 | class Context |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 50 | { |
| 51 | public: |
Jason Sams | b13ada5 | 2009-08-25 11:34:49 -0700 | [diff] [blame] | 52 | Context(Device *, Surface *, bool useDepth); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 53 | ~Context(); |
| 54 | |
Jason Sams | 462d11b | 2009-06-19 16:03:18 -0700 | [diff] [blame] | 55 | static pthread_key_t gThreadTLSKey; |
| 56 | struct ScriptTLSStruct { |
| 57 | Context * mContext; |
| 58 | Script * mScript; |
| 59 | }; |
| 60 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 61 | |
| 62 | //StructuredAllocationContext mStateAllocation; |
| 63 | ElementState mStateElement; |
| 64 | TypeState mStateType; |
| 65 | SamplerState mStateSampler; |
| 66 | ProgramFragmentState mStateFragment; |
| 67 | ProgramFragmentStoreState mStateFragmentStore; |
Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 68 | ProgramRasterState mStateRaster; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 69 | ProgramVertexState mStateVertex; |
Jason Sams | bba134c | 2009-06-22 15:49:21 -0700 | [diff] [blame] | 70 | LightState mStateLight; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 71 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 72 | ScriptCState mScriptC; |
| 73 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 74 | void swapBuffers(); |
| 75 | void setRootScript(Script *); |
Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 76 | void setRaster(ProgramRaster *); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 77 | void setVertex(ProgramVertex *); |
| 78 | void setFragment(ProgramFragment *); |
| 79 | void setFragmentStore(ProgramFragmentStore *); |
| 80 | |
| 81 | void updateSurface(void *sur); |
| 82 | |
| 83 | const ProgramFragment * getFragment() {return mFragment.get();} |
| 84 | const ProgramFragmentStore * getFragmentStore() {return mFragmentStore.get();} |
Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 85 | const ProgramRaster * getRaster() {return mRaster.get();} |
Jason Sams | b0ec1b4 | 2009-07-28 12:02:16 -0700 | [diff] [blame] | 86 | const ProgramVertex * getVertex() {return mVertex.get();} |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 87 | |
| 88 | void setupCheck(); |
Jason Sams | 9bee51c | 2009-08-05 13:57:03 -0700 | [diff] [blame] | 89 | void allocationCheck(const Allocation *); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 90 | |
Jason Sams | 65e7aa5 | 2009-09-24 17:38:20 -0700 | [diff] [blame] | 91 | void pause(); |
| 92 | void resume(); |
| 93 | |
Jason Sams | d5680f9 | 2009-06-10 18:39:40 -0700 | [diff] [blame] | 94 | void assignName(ObjectBase *obj, const char *name, uint32_t len); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 95 | void removeName(ObjectBase *obj); |
| 96 | ObjectBase * lookupName(const char *name) const; |
Jason Sams | d5680f9 | 2009-06-10 18:39:40 -0700 | [diff] [blame] | 97 | void appendNameDefines(String8 *str) const; |
Joe Onorato | d7b3774 | 2009-08-09 22:57:44 -0700 | [diff] [blame] | 98 | void appendVarDefines(String8 *str) const; |
Jason Sams | 9c54bdb | 2009-06-17 16:52:59 -0700 | [diff] [blame] | 99 | |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 100 | uint32_t getMessageToClient(void *data, size_t *receiveLen, size_t bufferLen, bool wait); |
| 101 | bool sendMessageToClient(void *data, uint32_t cmdID, size_t len, bool waitForSpace); |
Jason Sams | bd2197f | 2009-10-07 18:14:01 -0700 | [diff] [blame] | 102 | bool runScript(Script *s, uint32_t launchID); |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 103 | |
| 104 | void initToClient(); |
| 105 | void deinitToClient(); |
| 106 | |
Jason Sams | 9c54bdb | 2009-06-17 16:52:59 -0700 | [diff] [blame] | 107 | ProgramFragment * getDefaultProgramFragment() const { |
| 108 | return mStateFragment.mDefault.get(); |
| 109 | } |
| 110 | ProgramVertex * getDefaultProgramVertex() const { |
| 111 | return mStateVertex.mDefault.get(); |
| 112 | } |
| 113 | ProgramFragmentStore * getDefaultProgramFragmentStore() const { |
| 114 | return mStateFragmentStore.mDefault.get(); |
| 115 | } |
Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 116 | ProgramRaster * getDefaultProgramRaster() const { |
| 117 | return mStateRaster.mDefault.get(); |
| 118 | } |
Jason Sams | 9c54bdb | 2009-06-17 16:52:59 -0700 | [diff] [blame] | 119 | |
Joe Onorato | d7b3774 | 2009-08-09 22:57:44 -0700 | [diff] [blame] | 120 | void addInt32Define(const char* name, int32_t value) { |
| 121 | mInt32Defines.add(String8(name), value); |
| 122 | } |
| 123 | |
| 124 | void addFloatDefine(const char* name, float value) { |
| 125 | mFloatDefines.add(String8(name), value); |
| 126 | } |
| 127 | |
Jason Sams | b13ada5 | 2009-08-25 11:34:49 -0700 | [diff] [blame] | 128 | uint32_t getWidth() const {return mEGL.mWidth;} |
| 129 | uint32_t getHeight() const {return mEGL.mHeight;} |
Jason Sams | 40a29e8 | 2009-08-10 14:55:26 -0700 | [diff] [blame] | 130 | |
Jason Sams | bc948de | 2009-08-17 18:35:48 -0700 | [diff] [blame] | 131 | |
| 132 | ThreadIO mIO; |
Jason Sams | 730ee65 | 2009-08-18 17:07:09 -0700 | [diff] [blame] | 133 | void objDestroyAdd(ObjectBase *); |
Jason Sams | bc948de | 2009-08-17 18:35:48 -0700 | [diff] [blame] | 134 | |
Jason Sams | f4d1606 | 2009-08-19 12:17:14 -0700 | [diff] [blame] | 135 | // Timers |
| 136 | enum Timers { |
| 137 | RS_TIMER_IDLE, |
| 138 | RS_TIMER_INTERNAL, |
| 139 | RS_TIMER_SCRIPT, |
| 140 | RS_TIMER_CLEAR_SWAP, |
| 141 | _RS_TIMER_TOTAL |
| 142 | }; |
| 143 | uint64_t getTime() const; |
| 144 | void timerInit(); |
| 145 | void timerReset(); |
| 146 | void timerSet(Timers); |
| 147 | void timerPrint(); |
Jason Sams | 2525a81 | 2009-09-03 15:43:13 -0700 | [diff] [blame] | 148 | void timerFrame(); |
Jason Sams | f4d1606 | 2009-08-19 12:17:14 -0700 | [diff] [blame] | 149 | |
Jason Sams | b13ada5 | 2009-08-25 11:34:49 -0700 | [diff] [blame] | 150 | bool checkVersion1_1() const {return (mGL.mMajorVersion > 1) || (mGL.mMinorVersion >= 1); } |
| 151 | bool checkVersion2_0() const {return mGL.mMajorVersion >= 2; } |
| 152 | |
Jason Sams | 66b2771 | 2009-09-25 15:25:00 -0700 | [diff] [blame] | 153 | struct { |
| 154 | bool mLogTimes; |
| 155 | bool mLogScripts; |
| 156 | bool mLogObjects; |
| 157 | } props; |
Joe Onorato | 9ac2c66 | 2009-09-23 16:37:36 -0700 | [diff] [blame] | 158 | |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 159 | mutable const ObjectBase * mObjHead; |
| 160 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 161 | protected: |
| 162 | Device *mDev; |
| 163 | |
Jason Sams | b13ada5 | 2009-08-25 11:34:49 -0700 | [diff] [blame] | 164 | struct { |
| 165 | EGLint mNumConfigs; |
| 166 | EGLint mMajorVersion; |
| 167 | EGLint mMinorVersion; |
| 168 | EGLConfig mConfig; |
| 169 | EGLContext mContext; |
| 170 | EGLSurface mSurface; |
| 171 | EGLint mWidth; |
| 172 | EGLint mHeight; |
| 173 | EGLDisplay mDisplay; |
| 174 | } mEGL; |
| 175 | |
| 176 | struct { |
| 177 | const uint8_t * mVendor; |
| 178 | const uint8_t * mRenderer; |
| 179 | const uint8_t * mVersion; |
| 180 | const uint8_t * mExtensions; |
| 181 | |
| 182 | uint32_t mMajorVersion; |
| 183 | uint32_t mMinorVersion; |
| 184 | |
| 185 | } mGL; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 186 | |
| 187 | bool mRunning; |
| 188 | bool mExit; |
Jason Sams | b13ada5 | 2009-08-25 11:34:49 -0700 | [diff] [blame] | 189 | bool mUseDepth; |
Jason Sams | 65e7aa5 | 2009-09-24 17:38:20 -0700 | [diff] [blame] | 190 | bool mPaused; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 191 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 192 | pthread_t mThreadId; |
| 193 | |
| 194 | ObjectBaseRef<Script> mRootScript; |
| 195 | ObjectBaseRef<ProgramFragment> mFragment; |
| 196 | ObjectBaseRef<ProgramVertex> mVertex; |
| 197 | ObjectBaseRef<ProgramFragmentStore> mFragmentStore; |
Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 198 | ObjectBaseRef<ProgramRaster> mRaster; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 199 | |
Jason Sams | 730ee65 | 2009-08-18 17:07:09 -0700 | [diff] [blame] | 200 | |
| 201 | struct ObjDestroyOOB { |
| 202 | pthread_mutex_t mMutex; |
| 203 | Vector<ObjectBase *> mDestroyList; |
| 204 | bool mNeedToEmpty; |
| 205 | }; |
| 206 | ObjDestroyOOB mObjDestroy; |
| 207 | bool objDestroyOOBInit(); |
| 208 | void objDestroyOOBRun(); |
| 209 | void objDestroyOOBDestroy(); |
| 210 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 211 | private: |
| 212 | Context(); |
| 213 | |
| 214 | void initEGL(); |
| 215 | |
Jason Sams | a09f11d | 2009-06-04 17:58:03 -0700 | [diff] [blame] | 216 | bool runRootScript(); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 217 | |
| 218 | static void * threadProc(void *); |
| 219 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 220 | Surface *mWndSurface; |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 221 | |
| 222 | Vector<ObjectBase *> mNames; |
Joe Onorato | d7b3774 | 2009-08-09 22:57:44 -0700 | [diff] [blame] | 223 | KeyedVector<String8,int> mInt32Defines; |
| 224 | KeyedVector<String8,float> mFloatDefines; |
Jason Sams | f4d1606 | 2009-08-19 12:17:14 -0700 | [diff] [blame] | 225 | |
| 226 | uint64_t mTimers[_RS_TIMER_TOTAL]; |
| 227 | Timers mTimerActive; |
| 228 | uint64_t mTimeLast; |
Jason Sams | 2525a81 | 2009-09-03 15:43:13 -0700 | [diff] [blame] | 229 | uint64_t mTimeFrame; |
| 230 | uint64_t mTimeLastFrame; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 231 | }; |
| 232 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 233 | } |
| 234 | } |
| 235 | #endif |