Searched refs:mCondition (Results 1 – 10 of 10) sorted by relevance
/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 | EGLSync.h | 55 EGLint getCondition() const { return mCondition; } in getCondition() 64 static constexpr EGLint mCondition = EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR; variable
|
D | WorkerThread.cpp | 97 std::condition_variable mCondition; member in angle::AsyncWaitableEvent 110 mCondition.wait(lock, [this] { return !mIsPending; }); in wait() 205 waitable->mCondition.notify_all(); in checkToRunPendingTasks()
|
/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 | 854 TIntermTyped *getCondition() const { return mCondition; } in getCondition() 862 return mCondition->hasSideEffects() || mTrueExpression->hasSideEffects() || in hasSideEffects() 875 TIntermTyped *mCondition; variable 892 TIntermTyped *getCondition() const { return mCondition; } in getCondition() 899 TIntermTyped *mCondition; 944 TIntermCase(TIntermTyped *condition) : TIntermNode(), mCondition(condition) {} in TIntermCase() 953 bool hasCondition() const { return mCondition != nullptr; } in hasCondition() 954 TIntermTyped *getCondition() const { return mCondition; } in getCondition() 959 TIntermTyped *mCondition;
|
D | IntermNode.cpp | 905 return mCondition; in getChildNode() 916 REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement); in replaceChildNode() 931 return mCondition; in getChildNode() 942 REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement); in replaceChildNode() 971 TIntermCase::TIntermCase(const TIntermCase &node) : TIntermCase(node.mCondition->deepCopy()) {} in TIntermCase() 975 return (mCondition ? 1 : 0); in getChildCount() 981 ASSERT(mCondition); in getChildNode() 982 return mCondition; in getChildNode() 987 REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement); in replaceChildNode() 1081 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;
|