/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A 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()
|
H A D | Fence.h | 42 GLenum getCondition() const { return mCondition; } in getCondition() 50 GLenum mCondition; member in gl::final 72 GLenum getCondition() const { return mCondition; } in getCondition() 82 GLenum mCondition; member in gl::final
|
H A D | WorkerThread.cpp | 99 std::condition_variable mCondition; member in angle::final 113 mCondition.wait(lock, [this] { return !mIsPending; }); in wait() 211 waitable->mCondition.notify_all(); in checkToRunPendingTasks() 234 std::condition_variable mCondition; member in angle::final 241 mCondition.notify_all(); in markAsReady() 247 mCondition.wait(lock, [this] { return mIsReady; }); in wait()
|
H A D | EGLSync.cpp | 24 mCondition(EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR), in Sync() 51 mCondition = EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID; in Sync()
|
H A D | EGLSync.h | 56 EGLint getCondition() const { return mCondition; } in getCondition() 65 EGLint mCondition; member in egl::final
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Fence.cpp | 28 mCondition = GL_NONE; in Fence() 52 mCondition = condition; in setFence() 110 params[0] = mCondition; in getFenceiv() 118 FenceSync::FenceSync(GLuint name, GLenum condition, GLbitfield flags) : NamedObject(name), mCondition(condition), mFlags(flags) in FenceSync()
|
H A D | Fence.h | 40 GLenum mCondition; member in es2::Fence 54 GLenum getCondition() const { return mCondition; } in getCondition() 58 GLenum mCondition; member in es2::FenceSync
|
/third_party/skia/third_party/externals/dawn/src/dawn_platform/ |
H A D | WorkerThread.cpp | 32 mCondition.wait(lock, [this] { return mIsComplete; }); in Wait() 45 mCondition.notify_all(); in MarkAsComplete() 50 std::condition_variable mCondition; member in __anon20526::AsyncWaitableEventImpl
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | IntermTraverse.cpp | 254 if(visit && mCondition) in traverse() 255 mCondition->traverse(it); in traverse()
|
H A 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; member in TIntermCase
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | IntermNode.h | 885 TIntermTyped *getCondition() const { return mCondition; } in getCondition() 893 return mCondition->hasSideEffects() || mTrueExpression->hasSideEffects() || 908 TIntermTyped *mCondition; member in sh::TIntermTernary 925 TIntermTyped *getCondition() const { return mCondition; } in getCondition() 932 TIntermTyped *mCondition; member in sh::TIntermIfElse 977 TIntermCase(TIntermTyped *condition) : TIntermNode(), mCondition(condition) {} in TIntermCase() 986 bool hasCondition() const { return mCondition != nullptr; } in hasCondition() 987 TIntermTyped *getCondition() const { return mCondition; } in getCondition() 992 TIntermTyped *mCondition; member in sh::TIntermCase
|
H A D | IntermNode.cpp | 1022 return mCondition; in getChildNode() 1033 REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement); 1048 return mCondition; 1059 REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement); 1088 TIntermCase::TIntermCase(const TIntermCase &node) : TIntermCase(node.mCondition->deepCopy()) {} 1092 return (mCondition ? 1 : 0); 1098 ASSERT(mCondition); 1099 return mCondition; 1104 REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement); 1216 TIntermTyped *conditionCopy = node.mCondition in TIntermTernary() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | glslang_wrapper_utils.cpp | 2304 : mCondition(condition), mIndexList(indexList) in AccessChainIndexListAppend() 2306 if (mCondition) in AccessChainIndexListAppend() 2313 if (mCondition) in ~AccessChainIndexListAppend() 2320 bool mCondition; member in final
|