Home
last modified time | relevance | path

Searched refs:SamplerManager (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/v8/src/libsampler/
Dsampler.h126 class V8_EXPORT_PRIVATE SamplerManager {
130 SamplerManager(const SamplerManager&) = delete;
131 SamplerManager& operator=(const SamplerManager&) = delete;
146 static SamplerManager* instance();
149 SamplerManager() = default;
152 friend class base::LeakyObject<SamplerManager>;
Dsampler.cc202 void SamplerManager::AddSampler(Sampler* sampler) { in AddSampler()
218 void SamplerManager::RemoveSampler(Sampler* sampler) { in RemoveSampler()
232 void SamplerManager::DoSample(const v8::RegisterState& state) { in DoSample()
250 SamplerManager* SamplerManager::instance() { in instance()
251 static base::LeakyObject<SamplerManager> instance; in instance()
369 SamplerManager::instance()->DoSample(state); in HandleProfilerSignal()
555 SamplerManager::instance()->AddSampler(this); in Start()
561 SamplerManager::instance()->RemoveSampler(this); in Stop()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DResourceManager.cpp103 template class TypedResourceManager<Sampler, SamplerManager, SamplerID>;
288 SamplerManager::~SamplerManager() = default;
291 Sampler *SamplerManager::AllocateNewObject(rx::GLImplFactory *factory, SamplerID handle) in AllocateNewObject()
299 void SamplerManager::DeleteObject(const Context *context, Sampler *sampler) in DeleteObject()
304 SamplerID SamplerManager::createSampler() in createSampler()
309 Sampler *SamplerManager::getSampler(SamplerID handle) const in getSampler()
314 bool SamplerManager::isSampler(SamplerID sampler) const in isSampler()
DResourceManager.h238 class SamplerManager : public TypedResourceManager<Sampler, SamplerManager, SamplerID>
254 ~SamplerManager() override;
DState.h48 class SamplerManager; variable
849 const SamplerManager &getSamplerManagerForCapture() const { return *mSamplerManager; } in getSamplerManagerForCapture()
992 SamplerManager *mSamplerManager;
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
Dframe_capture_utils.cpp1360 const gl::SamplerManager &samplerManager = in SerializeContextToString()
DFrameCapture.cpp3070 const gl::SamplerManager &samplers = apiState.getSamplerManagerForCapture(); in CaptureShareGroupMidExecutionSetup()