/external/angle/src/libANGLE/ |
D | Fence.cpp | 22 : mFence(factory->createFenceNV()), mIsSet(false), mStatus(GL_FALSE), mCondition(GL_NONE) in FenceNV() 39 mCondition = condition; in set() 70 mCondition(GL_SYNC_GPU_COMMANDS_COMPLETE), in Sync() 99 mCondition = condition; in set() 109 ASSERT(mCondition != GL_NONE); in clientWait()
|
D | Fence.h | 42 GLenum getCondition() const { return mCondition; } in getCondition() 50 GLenum mCondition; variable 72 GLenum getCondition() const { return mCondition; } in getCondition() 82 GLenum mCondition; variable
|
D | WorkerThread.cpp | 99 std::condition_variable mCondition; member in angle::AsyncWaitableEvent 113 mCondition.wait(lock, [this] { return !mIsPending; }); in wait() 211 waitable->mCondition.notify_all(); in checkToRunPendingTasks() 234 std::condition_variable mCondition; member in angle::DelegateWaitableEvent 241 mCondition.notify_all(); in markAsReady() 247 mCondition.wait(lock, [this] { return mIsReady; }); in wait()
|
D | EGLSync.h | 56 EGLint getCondition() const { return mCondition; } in getCondition() 65 EGLint mCondition; variable
|
D | EGLSync.cpp | 24 mCondition(EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR), in Sync() 51 mCondition = EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID; in Sync()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Fence.cpp | 28 mCondition = GL_NONE; in Fence() 52 mCondition = condition; in setFence() 110 params[0] = mCondition; in getFenceiv() 118 …(GLuint name, GLenum condition, GLbitfield flags) : NamedObject(name), mCondition(condition), mFla… in FenceSync()
|
D | Fence.h | 40 GLenum mCondition; variable 54 GLenum getCondition() const { return mCondition; } in getCondition() 58 GLenum mCondition;
|
/external/angle/src/compiler/translator/ |
D | IntermNode.h | 874 TIntermTyped *getCondition() const { return mCondition; } in getCondition() 882 return mCondition->hasSideEffects() || mTrueExpression->hasSideEffects() || in hasSideEffects() 895 TIntermTyped *mCondition; variable 912 TIntermTyped *getCondition() const { return mCondition; } in getCondition() 919 TIntermTyped *mCondition; 964 TIntermCase(TIntermTyped *condition) : TIntermNode(), mCondition(condition) {} in TIntermCase() 973 bool hasCondition() const { return mCondition != nullptr; } in hasCondition() 974 TIntermTyped *getCondition() const { return mCondition; } in getCondition() 979 TIntermTyped *mCondition;
|
D | IntermNode.cpp | 978 return mCondition; in getChildNode() 989 REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement); in replaceChildNode() 1004 return mCondition; in getChildNode() 1015 REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement); in replaceChildNode() 1044 TIntermCase::TIntermCase(const TIntermCase &node) : TIntermCase(node.mCondition->deepCopy()) {} in TIntermCase() 1048 return (mCondition ? 1 : 0); in getChildCount() 1054 ASSERT(mCondition); in getChildNode() 1055 return mCondition; in getChildNode() 1060 REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement); in replaceChildNode() 1158 TIntermTyped *conditionCopy = node.mCondition->deepCopy(); in TIntermTernary() [all …]
|
/external/swiftshader/src/OpenGL/compiler/ |
D | IntermTraverse.cpp | 254 if(visit && mCondition) in traverse() 255 mCondition->traverse(it); in traverse()
|
D | intermediate.h | 664 : TIntermNode(), mCondition(condition) in TIntermCase() 671 bool hasCondition() const { return mCondition != nullptr; } in hasCondition() 672 TIntermTyped *getCondition() const { return mCondition; } in getCondition() 675 TIntermTyped *mCondition;
|
/external/angle/src/libANGLE/renderer/ |
D | glslang_wrapper_utils.cpp | 2255 : mCondition(condition), mIndexList(indexList) in AccessChainIndexListAppend() 2257 if (mCondition) in AccessChainIndexListAppend() 2264 if (mCondition) in ~AccessChainIndexListAppend() 2271 bool mCondition; member in rx::__anon9e0b8ba10111::AccessChainIndexListAppend
|