Home
last modified time | relevance | path

Searched refs:mFence (Results 1 - 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DFence_unittest.cpp46 mFence = new gl::FenceNV(&factory);
49 void TearDown() override { delete mFence; }
53 gl::FenceNV *mFence; member in __anon19930::FenceNVTest
59 EXPECT_FALSE(mFence->isSet()); in TEST_F()
60 EXPECT_EQ(angle::Result::Continue, mFence->set(nullptr, GL_ALL_COMPLETED_NV)); in TEST_F()
61 EXPECT_TRUE(mFence->isSet()); in TEST_F()
70 EXPECT_EQ(angle::Result::Continue, mFence->test(nullptr, &out)); in TEST_F()
72 EXPECT_EQ(angle::Result::Continue, mFence->test(nullptr, &out)); in TEST_F()
101 mFence = new gl::Sync(&factory, 1);
103 mFence
110 gl::Sync *mFence; global() member in __anon19930::FenceSyncTest
[all...]
H A DFence.cpp22 : mFence(factory->createFenceNV()), mIsSet(false), mStatus(GL_FALSE), mCondition(GL_NONE) in FenceNV()
27 SafeDelete(mFence); in ~FenceNV()
32 mFence->onDestroy(context); in onDestroy()
37 ANGLE_TRY(mFence->set(context, condition)); in set()
49 ANGLE_TRY(mFence->test(context, &mStatus)); in test()
59 ANGLE_TRY(mFence->finish(context)); in finish()
68 mFence(factory->createSync()), in Sync()
76 ASSERT(mFence); in onDestroy()
77 mFence->onDestroy(context); in onDestroy()
82 SafeDelete(mFence); in ~Sync()
[all...]
H A DEGLSync.cpp32 mFence = std::unique_ptr<rx::EGLSyncImpl>(factory->createSync(attribs)); in Sync()
36 mFence = std::unique_ptr<rx::EGLSyncImpl>(new rx::ReusableSync(attribs)); in Sync()
57 ASSERT(mFence); in onDestroy()
58 mFence->onDestroy(display); in onDestroy()
59 mFence.reset(); in onDestroy()
66 return mFence->initialize(display, context, mType); in initialize()
85 return mFence->clientWait(display, context, flags, timeout, outResult); in clientWait()
90 return mFence->serverWait(display, context, flags); in serverWait()
95 return mFence->signal(display, context, mode); in signal()
100 return mFence in getStatus()
[all...]
H A DFence.h45 rx::FenceNVImpl *mFence; member in gl::final
75 rx::SyncImpl *getImplementation() const { return mFence; } in getImplementation()
78 rx::SyncImpl *mFence; member in gl::final
H A DEGLSync.h60 std::unique_ptr<rx::EGLSyncImpl> mFence; member in egl::final
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DFenceNVGL.cpp21 mFunctions->genFencesNV(1, &mFence); in FenceNVGL()
26 mFunctions->deleteFencesNV(1, &mFence); in ~FenceNVGL()
27 mFence = 0; in ~FenceNVGL()
34 mFunctions->setFenceNV(mFence, condition); in set()
42 *outFinished = mFunctions->testFenceNV(mFence); in test()
48 mFunctions->finishFenceNV(mFence); in finish()
H A DFenceNVGL.h33 GLuint mFence; member in rx::FenceNVGL
/third_party/skia/platform_tools/android/apps/skottie/skottielib/src/main/java/org/skia/skottie/
H A DSkottieRunner.java126 private CountDownLatch mFence; field in SkottieRunner.RunSignalAndCatch
130 mFence = fence; in RunSignalAndCatch()
140 mFence.countDown(); in run()
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
H A DDeviceD3D12.cpp99 D3D12_FENCE_FLAG_NONE, IID_PPV_ARGS(&mFence)), in Initialize()
340 mCommandQueue->Signal(mFence.Get(), uint64_t(GetLastSubmittedCommandSerial())), in NextSerial()
347 DAWN_TRY(CheckHRESULT(mFence->SetEventOnCompletion(uint64_t(serial), mFenceEvent), in WaitForSerial()
356 ExecutionSerial completedSerial = ExecutionSerial(mFence->GetCompletedValue()); in CheckAndUpdateCompletedSerials()
H A DDeviceD3D12.h201 ComPtr<ID3D12Fence> mFence; member in dawn_native::d3d12::final

Completed in 5 milliseconds