Home
last modified time | relevance | path

Searched refs:SamplerPtr (Results 1 – 25 of 27) sorted by relevance

12

/dports/misc/ompl/ompl-1.5.2/src/ompl/base/
H A DStateSamplerArray.h63 using SamplerPtr = StateSamplerPtr;
65 SamplerPtr allocStateSampler(const SpaceInformation *si)
75 using SamplerPtr = ValidStateSamplerPtr;
77 SamplerPtr allocStateSampler(const SpaceInformation *si)
91 using SamplerPtr = typename SamplerSelector<T>::SamplerPtr;
143 std::vector<SamplerPtr> samplers_;
/dports/graphics/ogre3d/ogre-1.11.6/OgreMain/include/
H A DOgreTextureManager.h68 SamplerPtr createSampler(const String& name = BLANKSTRING)
70 SamplerPtr ret = _createSamplerImpl();
81 const SamplerPtr& getSampler(const String& name) const in getSampler()
83 static SamplerPtr nullPtr; in getSampler()
422 const SamplerPtr& getDefaultSampler();
431 virtual SamplerPtr _createSamplerImpl() { return std::make_shared<Sampler>(); } in _createSamplerImpl()
437 SamplerPtr mDefaultSampler;
438 std::map<String, SamplerPtr> mNamedSamplers;
H A DOgreTextureUnitState.h222 typedef std::shared_ptr<Sampler> SamplerPtr; typedef
665 const SamplerPtr& getSampler() const { return mSampler; } in getSampler()
666 void setSampler(const SamplerPtr& sampler) { mSampler = sampler; } in setSampler()
1105 const SamplerPtr& _getLocalSampler();
1143 SamplerPtr mSampler;
/dports/graphics/ogre3d/ogre-1.11.6/Components/RTShaderSystem/include/
H A DOgreShaderExNormalMapLighting.h155 const SamplerPtr& getNormalMapSampler() const { return mNormalMapSampler; } in getNormalMapSampler()
158 void setNormalMapSampler(const SamplerPtr& sampler) { mNormalMapSampler = sampler; } in setNormalMapSampler()
207 SamplerPtr mNormalMapSampler;
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/gfx-backend-metal/src/
H A Dsoft.rs3 SamplerPtr, TexturePtr,
29 pub samplers: Vec<Option<SamplerPtr>>,
49 type SamplerArray = &'a [Option<SamplerPtr>];
523 impl AsSlice<Option<SamplerPtr>, Own> for Range<CacheResourceIndex> {
525 fn as_slice<'a>(&'a self, resources: &'a Own) -> &'a [Option<SamplerPtr>] { in as_slice() argument
H A Dlib.rs1086 pub type SamplerPtr = NonNull<metal::MTLSamplerState>; typedef
1115 impl AsNative for SamplerPtr { implementation
H A Dnative.rs2 internal::Channel, Backend, BufferPtr, FastHashMap, ResourceIndex, SamplerPtr, TexturePtr,
485 pub(crate) samplers: Vec<(pso::ShaderStageFlags, Option<SamplerPtr>)>,
H A Dcommand.rs5 PrivateDisabilities, ResourceIndex, ResourcePtr, SamplerPtr, Shared, TexturePtr,
873 samplers: Vec<Option<SamplerPtr>>,
1731 R::SamplerArray: soft::AsSlice<Option<SamplerPtr>, R>, in exec_render() argument
2124 R::SamplerArray: soft::AsSlice<Option<SamplerPtr>, R>, in exec_compute() argument
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/gfx-backend-metal/src/
H A Dsoft.rs3 SamplerPtr, TexturePtr,
29 pub samplers: Vec<Option<SamplerPtr>>,
49 type SamplerArray = &'a [Option<SamplerPtr>];
523 impl AsSlice<Option<SamplerPtr>, Own> for Range<CacheResourceIndex> {
525 fn as_slice<'a>(&'a self, resources: &'a Own) -> &'a [Option<SamplerPtr>] { in as_slice() argument
H A Dlib.rs1086 pub type SamplerPtr = NonNull<metal::MTLSamplerState>; typedef
1115 impl AsNative for SamplerPtr { implementation
H A Dnative.rs2 internal::Channel, Backend, BufferPtr, FastHashMap, ResourceIndex, SamplerPtr, TexturePtr,
485 pub(crate) samplers: Vec<(pso::ShaderStageFlags, Option<SamplerPtr>)>,
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/gfx-backend-metal/src/
H A Dsoft.rs7 SamplerPtr,
33 pub samplers: Vec<Option<SamplerPtr>>,
52 type SamplerArray = &'a [Option<SamplerPtr>];
508 impl AsSlice<Option<SamplerPtr>, Own> for Range<CacheResourceIndex> {
510 fn as_slice<'a>(&'a self, resources: &'a Own) -> &'a [Option<SamplerPtr>] { in as_slice() argument
H A Dlib.rs1013 pub type SamplerPtr = NonNull<metal::MTLSamplerState>; typedef
1042 impl AsNative for SamplerPtr { implementation
H A Dnative.rs7 SamplerPtr,
442 pub(crate) samplers: Vec<Option<SamplerPtr>>,
H A Dcommand.rs14 SamplerPtr,
683 samplers: Vec<Option<SamplerPtr>>,
1546 R::SamplerArray: soft::AsSlice<Option<SamplerPtr>, R>, in exec_render() argument
1920 R::SamplerArray: soft::AsSlice<Option<SamplerPtr>, R>, in exec_compute() argument
/dports/graphics/rx/rx-0.4.0/cargo-crates/gfx-backend-metal-0.4.0/src/
H A Dsoft.rs7 SamplerPtr,
34 pub samplers: Vec<Option<SamplerPtr>>,
53 type SamplerArray = &'a [Option<SamplerPtr>];
509 impl AsSlice<Option<SamplerPtr>, Own> for Range<CacheResourceIndex> {
511 fn as_slice<'a>(&'a self, resources: &'a Own) -> &'a [Option<SamplerPtr>] { in as_slice() argument
H A Dlib.rs982 pub type SamplerPtr = NonNull<metal::MTLSamplerState>; typedef
1011 impl AsNative for SamplerPtr { implementation
H A Dnative.rs7 SamplerPtr,
444 pub(crate) samplers: Vec<Option<SamplerPtr>>,
H A Dcommand.rs14 SamplerPtr,
677 samplers: Vec<Option<SamplerPtr>>,
1521 R::SamplerArray: soft::AsSlice<Option<SamplerPtr>, R>, in exec_render() argument
1895 R::SamplerArray: soft::AsSlice<Option<SamplerPtr>, R>, in exec_compute() argument
/dports/graphics/ogre3d/ogre-1.11.6/RenderSystems/GL3Plus/include/
H A DOgreGL3PlusTextureManager.h79 SamplerPtr _createSamplerImpl();
/dports/www/firefox/firefox-99.0/third_party/rust/wgpu-hal/src/metal/
H A Dmod.rs449 fn as_raw(&self) -> SamplerPtr { in as_raw() argument
541 type SamplerPtr = NonNull<mtl::MTLSamplerState>; typedef
567 impl AsNative for SamplerPtr { implementation
592 samplers: Vec<SamplerPtr>,
/dports/graphics/ogre3d/ogre-1.11.6/RenderSystems/GL3Plus/src/
H A DOgreGL3PlusTextureManager.cpp179 SamplerPtr GL3PlusTextureManager::_createSamplerImpl() in _createSamplerImpl()
/dports/graphics/ogre3d/ogre-1.11.6/OgreMain/src/
H A DOgreBuiltinScriptTranslators.h83 …static void translateSamplerParam(ScriptCompiler *compiler, const SamplerPtr& sampler, PropertyAbs…
H A DOgreTextureUnitState.cpp37 static SamplerPtr DUMMY_SAMPLER = std::make_shared<Sampler>();
1390 memSize += sizeof(SamplerPtr); in calculateSize()
1409 const SamplerPtr& TextureUnitState::_getLocalSampler() in _getLocalSampler()
H A DOgreTextureManager.cpp333 const SamplerPtr& TextureManager::getDefaultSampler() in getDefaultSampler()

12