Home
last modified time | relevance | path

Searched refs:ComPtr (Results 26 – 50 of 2730) sorted by relevance

12345678910>>...110

/dports/lang/spidermonkey60/firefox-60.9.0/third_party/rust/dwrote/src/
H A Dcomptr.rs10 pub struct ComPtr<T> { struct
14 impl<T> ComPtr<T> { argument
16 ComPtr { ptr: ptr::null_mut() } in new()
25 ComPtr { ptr: ptr } in from_ptr()
29 ComPtr { ptr: ptr } in already_addrefed()
79 impl<T> Clone for ComPtr<T> { implementation
84 ComPtr { ptr: self.ptr } in clone()
88 impl<T> Deref for ComPtr<T> { implementation
96 impl<T> DerefMut for ComPtr<T> { implementation
103 impl<T> PartialEq for ComPtr<T> { implementation
[all …]
/dports/graphics/opencv/opencv-4.5.3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
H A DQuadRenderer.h40 …void Render(Microsoft::WRL::ComPtr<ID3D11RenderTargetView> renderTargetView, Microsoft::WRL::ComPt…
44 Microsoft::WRL::ComPtr<ID3D11InputLayout> m_inputLayout;
45 Microsoft::WRL::ComPtr<ID3D11Buffer> m_vertexBuffer;
46 Microsoft::WRL::ComPtr<ID3D11Buffer> m_indexBuffer;
47 Microsoft::WRL::ComPtr<ID3D11VertexShader> m_vertexShader;
48 Microsoft::WRL::ComPtr<ID3D11PixelShader> m_pixelShader;
49 Microsoft::WRL::ComPtr<ID3D11Buffer> m_constantBuffer;
50 Microsoft::WRL::ComPtr<ID3D11Texture2D> m_Texture;
51 Microsoft::WRL::ComPtr<ID3D11ShaderResourceView> m_SRV;
53 Microsoft::WRL::ComPtr<ID3D11BlendState> m_Transparency;
[all …]
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/plugins/scenegraph/d3d12/
H A Dqsgd3d12engine_p_p.h89 ComPtr<ID3D12DescriptorHeap> heap;
115 ComPtr<ID3D12Device> m_device;
116 ComPtr<IDXGIFactory4> m_factory;
127 ComPtr<ID3D12Fence> fence;
229 ComPtr<ID3D12Resource> res;
282 ComPtr<IDXGISwapChain3> swapChain;
287 ComPtr<ID3D12Resource> defaultDS;
324 ComPtr<ID3D12Resource> texture;
329 ComPtr<ID3D12Heap> heap;
391 ComPtr<ID3D12Resource> color;
[all …]
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/plugins/scenegraph/d3d12/
H A Dqsgd3d12engine_p_p.h89 ComPtr<ID3D12DescriptorHeap> heap;
115 ComPtr<ID3D12Device> m_device;
116 ComPtr<IDXGIFactory4> m_factory;
127 ComPtr<ID3D12Fence> fence;
229 ComPtr<ID3D12Resource> res;
282 ComPtr<IDXGISwapChain3> swapChain;
287 ComPtr<ID3D12Resource> defaultDS;
324 ComPtr<ID3D12Resource> texture;
329 ComPtr<ID3D12Heap> heap;
391 ComPtr<ID3D12Resource> color;
[all …]
/dports/graphics/opencv/opencv-4.5.3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
H A DCubeRenderer.h42 …void Render(Microsoft::WRL::ComPtr<ID3D11RenderTargetView> renderTargetView, Microsoft::WRL::ComPt…
45 Microsoft::WRL::ComPtr<ID3D11InputLayout> m_inputLayout;
46 Microsoft::WRL::ComPtr<ID3D11Buffer> m_vertexBuffer;
47 Microsoft::WRL::ComPtr<ID3D11Buffer> m_indexBuffer;
48 Microsoft::WRL::ComPtr<ID3D11VertexShader> m_vertexShader;
49 Microsoft::WRL::ComPtr<ID3D11PixelShader> m_pixelShader;
50 Microsoft::WRL::ComPtr<ID3D11Buffer> m_constantBuffer;
51 Microsoft::WRL::ComPtr<ID3D11Texture2D> m_texture;
52 Microsoft::WRL::ComPtr<ID3D11ShaderResourceView> m_SRV;
57 Microsoft::WRL::ComPtr<ID3D11BlendState> m_transparency;
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/accessibility/platform/
H A Dax_platform_node_win_unittest.h96 Microsoft::WRL::ComPtr<IRawElementProviderSimple>
98 Microsoft::WRL::ComPtr<IRawElementProviderSimple>
100 Microsoft::WRL::ComPtr<IRawElementProviderSimple>
103 Microsoft::WRL::ComPtr<IRawElementProviderFragment>
105 Microsoft::WRL::ComPtr<IRawElementProviderFragment>
109 Microsoft::WRL::ComPtr<IAccessible2> ToIAccessible2(
110 Microsoft::WRL::ComPtr<IUnknown> unknown);
111 Microsoft::WRL::ComPtr<IAccessible2> ToIAccessible2(
112 Microsoft::WRL::ComPtr<IAccessible> accessible);
113 Microsoft::WRL::ComPtr<IAccessible2_2> ToIAccessible2_2(
[all …]
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/dwrote-0.9.0/src/
H A Dcomptr.rs12 pub struct ComPtr<T> { struct
16 impl<T> ComPtr<T> { argument
18 ComPtr { ptr: ptr::null_mut() } in new()
27 ComPtr { ptr: ptr } in from_ptr()
31 ComPtr { ptr: ptr } in already_addrefed()
83 impl<T> Clone for ComPtr<T> { implementation
88 ComPtr { ptr: self.ptr } in clone()
92 impl<T> Deref for ComPtr<T> { implementation
100 impl<T> DerefMut for ComPtr<T> { implementation
107 impl<T> PartialEq for ComPtr<T> { implementation
[all …]
H A Dfont_collection.rs5 use comptr::ComPtr;
23 collection: ComPtr<IDWriteFontCollection>,
36 let mut family: ComPtr<IDWriteFontFamily> = ComPtr::new(); in next()
46 native: UnsafeCell<ComPtr<IDWriteFontCollection>>,
52 let mut native: ComPtr<IDWriteFontCollection> = ComPtr::new(); in get_system()
69 pub fn take(native: ComPtr<IDWriteFontCollection>) -> FontCollection { in take()
75 pub fn from_loader(collection_loader: ComPtr<IDWriteFontCollectionLoader>) -> FontCollection { in from_loader()
80 let mut collection: ComPtr<IDWriteFontCollection> = ComPtr::new(); in from_loader()
114 let mut family: ComPtr<IDWriteFontFamily> = ComPtr::new(); in get_font_family()
140 let mut font: ComPtr<IDWriteFont> = ComPtr::new(); in get_font_from_face()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/gl/
H A Dswap_chain_presenter.h37 const Microsoft::WRL::ComPtr<IDXGISwapChain1>& swap_chain() const { in swap_chain()
92 Microsoft::WRL::ComPtr<ID3D11Texture2D> UploadVideoImages(
201 Microsoft::WRL::ComPtr<IDCompositionVisual2> content_visual_;
205 Microsoft::WRL::ComPtr<IDCompositionVisual2> clip_visual_;
212 Microsoft::WRL::ComPtr<ID3D11Texture2D> staging_texture_;
214 Microsoft::WRL::ComPtr<ID3D11Texture2D> copy_texture_;
217 Microsoft::WRL::ComPtr<ID3D11Device> d3d11_device_;
218 Microsoft::WRL::ComPtr<IDCompositionDevice2> dcomp_device_;
219 Microsoft::WRL::ComPtr<IDXGISwapChain1> swap_chain_;
229 Microsoft::WRL::ComPtr<IDXGIResource> decode_resource_;
[all …]
H A Dgl_image_dxgi.h56 Microsoft::WRL::ComPtr<ID3D11Texture2D> texture() { return texture_; } in texture()
61 void SetTexture(const Microsoft::WRL::ComPtr<ID3D11Texture2D>& texture,
69 Microsoft::WRL::ComPtr<IDXGIKeyedMutex> keyed_mutex_;
74 Microsoft::WRL::ComPtr<ID3D11Texture2D> texture_;
98 Microsoft::WRL::ComPtr<ID3D11VideoDevice> video_device_;
99 Microsoft::WRL::ComPtr<ID3D11VideoContext> video_context_;
100 Microsoft::WRL::ComPtr<ID3D11VideoProcessor> d3d11_processor_;
101 Microsoft::WRL::ComPtr<ID3D11VideoProcessorEnumerator> enumerator_;
102 Microsoft::WRL::ComPtr<ID3D11Device> d3d11_device_;
103 Microsoft::WRL::ComPtr<ID3D11Texture2D> decoder_copy_texture_;
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/gl/
H A Dswap_chain_presenter.h103 Microsoft::WRL::ComPtr<ID3D11Texture2D> UploadVideoImages(
129 Microsoft::WRL::ComPtr<ID3D11Texture2D> input_texture,
131 Microsoft::WRL::ComPtr<IDXGIKeyedMutex> keyed_mutex,
245 Microsoft::WRL::ComPtr<IDCompositionVisual2> clip_visual_;
252 Microsoft::WRL::ComPtr<ID3D11Texture2D> staging_texture_;
254 Microsoft::WRL::ComPtr<ID3D11Texture2D> copy_texture_;
257 Microsoft::WRL::ComPtr<ID3D11Device> d3d11_device_;
258 Microsoft::WRL::ComPtr<IDCompositionDevice2> dcomp_device_;
259 Microsoft::WRL::ComPtr<IDXGISwapChain1> swap_chain_;
269 Microsoft::WRL::ComPtr<IDXGIResource> decode_resource_;
[all …]
H A Dgl_image_dxgi.h56 Microsoft::WRL::ComPtr<ID3D11Texture2D> texture() { return texture_; } in texture()
61 void SetTexture(const Microsoft::WRL::ComPtr<ID3D11Texture2D>& texture,
69 Microsoft::WRL::ComPtr<IDXGIKeyedMutex> keyed_mutex_;
74 Microsoft::WRL::ComPtr<ID3D11Texture2D> texture_;
98 Microsoft::WRL::ComPtr<ID3D11VideoDevice> video_device_;
99 Microsoft::WRL::ComPtr<ID3D11VideoContext> video_context_;
100 Microsoft::WRL::ComPtr<ID3D11VideoProcessor> d3d11_processor_;
101 Microsoft::WRL::ComPtr<ID3D11VideoProcessorEnumerator> enumerator_;
102 Microsoft::WRL::ComPtr<ID3D11Device> d3d11_device_;
103 Microsoft::WRL::ComPtr<ID3D11Texture2D> decoder_copy_texture_;
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/dawn_native/d3d12/
H A DDeviceD3D12.h60 ComPtr<ID3D12Device> GetD3D12Device() const;
61 ComPtr<ID3D12CommandQueue> GetCommandQueue() const;
74 ComPtr<IDXGIFactory4> GetFactory() const;
84 void ReferenceUntilUnused(ComPtr<IUnknown> object);
146 ComPtr<ID3D12Fence> mFence;
150 ComPtr<ID3D12CommandQueue> mCommandQueue;
151 ComPtr<ID3D12SharingContract> mD3d12SharingContract;
154 ComPtr<ID3D11On12Device> mD3d11On12Device;
155 ComPtr<ID3D11DeviceContext2> mD3d11On12DeviceContext;
158 ComPtr<ID3D12CommandSignature> mDrawIndirectSignature;
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/browser/accessibility/
H A Dhit_testing_win_browsertest.cc23 using Microsoft::WRL::ComPtr;
43 ComPtr<IAccessible> content_root; in GetWebContentRootIAccessible()
52 ComPtr<IRawElementProviderFragment> content_root; in GetWebContentFragmentRoot()
60 ComPtr<IRawElementProviderSimple> content_root; in GetWebContentRootTextProvider()
62 ComPtr<ITextProvider> text_provider; in GetWebContentRootTextProvider()
101 ComPtr<IAccessible> hit_accessible; in IN_PROC_BROWSER_TEST_P()
106 ComPtr<IAccessible> expected_accessible; in IN_PROC_BROWSER_TEST_P()
123 ComPtr<IAccessible> hit_accessible; in IN_PROC_BROWSER_TEST_P()
128 ComPtr<IAccessible> expected_accessible; in IN_PROC_BROWSER_TEST_P()
219 ComPtr<ITextRangeProvider> hit_text_range; in IN_PROC_BROWSER_TEST_P()
[all …]
/dports/multimedia/libmediainfo/MediaInfo_CLI_GNU_FromSource/ZenLib/Source/ZenLib/
H A DOS_Utils.cpp70 ComPtr<IBuffer> Path_Buffer; in Add_Item_To_FUA()
71 ComPtr<IBuffer> Hash_Buffer; in Add_Item_To_FUA()
74 ComPtr<IHashAlgorithmProvider> Hash_Provider; in Add_Item_To_FUA()
112 ComPtr<IStorageFileStatics> Storage; in Get_File()
124 ComPtr<IBuffer> Path_Buffer; in Get_File()
125 ComPtr<IBuffer> Hash_Buffer; in Get_File()
128 ComPtr<IHashAlgorithmProvider> Hash_Provider; in Get_File()
172 ComPtr<IStorageFolderStatics> Storage; in Get_Folder()
184 ComPtr<IBuffer> Path_Buffer; in Get_Folder()
185 ComPtr<IBuffer> Hash_Buffer; in Get_Folder()
[all …]
/dports/multimedia/libzen/MediaInfo_CLI_GNU_FromSource/ZenLib/Source/ZenLib/
H A DOS_Utils.cpp70 ComPtr<IBuffer> Path_Buffer; in Add_Item_To_FUA()
71 ComPtr<IBuffer> Hash_Buffer; in Add_Item_To_FUA()
74 ComPtr<IHashAlgorithmProvider> Hash_Provider; in Add_Item_To_FUA()
112 ComPtr<IStorageFileStatics> Storage; in Get_File()
124 ComPtr<IBuffer> Path_Buffer; in Get_File()
125 ComPtr<IBuffer> Hash_Buffer; in Get_File()
128 ComPtr<IHashAlgorithmProvider> Hash_Provider; in Get_File()
172 ComPtr<IStorageFolderStatics> Storage; in Get_Folder()
184 ComPtr<IBuffer> Path_Buffer; in Get_Folder()
185 ComPtr<IBuffer> Hash_Buffer; in Get_Folder()
[all …]
/dports/multimedia/mediainfo/MediaInfo_CLI_GNU_FromSource/ZenLib/Source/ZenLib/
H A DOS_Utils.cpp70 ComPtr<IBuffer> Path_Buffer; in Add_Item_To_FUA()
71 ComPtr<IBuffer> Hash_Buffer; in Add_Item_To_FUA()
74 ComPtr<IHashAlgorithmProvider> Hash_Provider; in Add_Item_To_FUA()
112 ComPtr<IStorageFileStatics> Storage; in Get_File()
124 ComPtr<IBuffer> Path_Buffer; in Get_File()
125 ComPtr<IBuffer> Hash_Buffer; in Get_File()
128 ComPtr<IHashAlgorithmProvider> Hash_Provider; in Get_File()
172 ComPtr<IStorageFolderStatics> Storage; in Get_Folder()
184 ComPtr<IBuffer> Path_Buffer; in Get_Folder()
185 ComPtr<IBuffer> Hash_Buffer; in Get_Folder()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/gfx-backend-dx11/src/
H A Dinternal.rs17 use wio::com::ComPtr;
150 ComPtr::from_raw( in compile_blob()
163 device: &ComPtr<d3d11::ID3D11Device>, in compile_vs()
166 ) -> ComPtr<d3d11::ID3D11VertexShader> { in compile_vs()
179 unsafe { ComPtr::from_raw(shader) } in compile_vs()
183 device: &ComPtr<d3d11::ID3D11Device>, in compile_ps()
186 ) -> ComPtr<d3d11::ID3D11PixelShader> { in compile_ps()
199 unsafe { ComPtr::from_raw(shader) } in compile_ps()
203 device: &ComPtr<d3d11::ID3D11Device>, in compile_cs()
219 unsafe { ComPtr::from_raw(shader) } in compile_cs()
[all …]
/dports/graphics/rx/rx-0.4.0/cargo-crates/gfx-backend-dx11-0.4.1/src/
H A Dinternal.rs10 use wio::com::ComPtr;
146 ComPtr::from_raw( in compile_blob()
159 device: &ComPtr<d3d11::ID3D11Device>, in compile_vs()
162 ) -> ComPtr<d3d11::ID3D11VertexShader> { in compile_vs()
175 unsafe { ComPtr::from_raw(shader) } in compile_vs()
179 device: &ComPtr<d3d11::ID3D11Device>, in compile_ps()
182 ) -> ComPtr<d3d11::ID3D11PixelShader> { in compile_ps()
195 unsafe { ComPtr::from_raw(shader) } in compile_ps()
199 device: &ComPtr<d3d11::ID3D11Device>, in compile_cs()
215 unsafe { ComPtr::from_raw(shader) } in compile_cs()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/capture/video/win/
H A Dvideo_capture_device_win.h64 Microsoft::WRL::ComPtr<IBaseFilter> capture_filter,
68 Microsoft::WRL::ComPtr<IBaseFilter> capture_filter,
69 Microsoft::WRL::ComPtr<IPin> output_capture_pin,
72 static Microsoft::WRL::ComPtr<IPin> GetPin(
73 Microsoft::WRL::ComPtr<IBaseFilter> capture_filter,
128 Microsoft::WRL::ComPtr<IBaseFilter> capture_filter_;
130 Microsoft::WRL::ComPtr<IGraphBuilder> graph_builder_;
133 Microsoft::WRL::ComPtr<IMediaControl> media_control_;
134 Microsoft::WRL::ComPtr<IPin> input_sink_pin_;
135 Microsoft::WRL::ComPtr<IPin> output_capture_pin_;
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/device/bluetooth/
H A Dbluetooth_adapter_winrt.h85 Microsoft::WRL::ComPtr<
88 Microsoft::WRL::ComPtr<
129 Microsoft::WRL::ComPtr<IAgileReference> radio_statics;
134 Microsoft::WRL::ComPtr<
137 Microsoft::WRL::ComPtr<
149 Microsoft::WRL::ComPtr<
152 Microsoft::WRL::ComPtr<
160 Microsoft::WRL::ComPtr<
165 Microsoft::WRL::ComPtr<
250 Microsoft::WRL::ComPtr<
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/device/bluetooth/
H A Dbluetooth_adapter_winrt.h86 Microsoft::WRL::ComPtr<
89 Microsoft::WRL::ComPtr<
130 Microsoft::WRL::ComPtr<IAgileReference> radio_statics;
135 Microsoft::WRL::ComPtr<
138 Microsoft::WRL::ComPtr<
149 Microsoft::WRL::ComPtr<
152 Microsoft::WRL::ComPtr<
160 Microsoft::WRL::ComPtr<
165 Microsoft::WRL::ComPtr<
243 Microsoft::WRL::ComPtr<
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/tools/v8windbg/src/
H A Dv8windbg-extension.cc36 const WRL::ComPtr<IDebugHostType>& sp_type) { in DoesTypeDeriveFromObject()
48 WRL::ComPtr<IDebugHostSymbol> sp_type_symbol; in DoesTypeDeriveFromObject()
52 WRL::ComPtr<IDebugHostType> sp_base_type; in DoesTypeDeriveFromObject()
64 WRL::ComPtr<IDebugHostContext>& sp_ctx) { in GetV8ObjectType()
107 WRL::ComPtr<IDebugHostSymbol> sp_isolate_sym; in IsV8Module()
118 WRL::ComPtr<IDebugHostContext>& sp_ctx) { in GetV8Module()
152 WRL::ComPtr<IDebugHostModule> sp_module; in GetV8Module()
175 WRL::ComPtr<IDebugHostModule> sp_module; in GetV8Module()
265 WRL::ComPtr<IModelObject> method; in Initialize()
274 WRL::ComPtr<IModelObject> stack_frame; in Initialize()
[all …]
/dports/lang/v8/v8-9.6.180.12/tools/v8windbg/src/
H A Dv8windbg-extension.cc36 const WRL::ComPtr<IDebugHostType>& sp_type) { in DoesTypeDeriveFromObject()
48 WRL::ComPtr<IDebugHostSymbol> sp_type_symbol; in DoesTypeDeriveFromObject()
52 WRL::ComPtr<IDebugHostType> sp_base_type; in DoesTypeDeriveFromObject()
64 WRL::ComPtr<IDebugHostContext>& sp_ctx) { in GetV8ObjectType()
107 WRL::ComPtr<IDebugHostSymbol> sp_isolate_sym; in IsV8Module()
118 WRL::ComPtr<IDebugHostContext>& sp_ctx) { in GetV8Module()
152 WRL::ComPtr<IDebugHostModule> sp_module; in GetV8Module()
175 WRL::ComPtr<IDebugHostModule> sp_module; in GetV8Module()
266 WRL::ComPtr<IModelObject> method; in Initialize()
275 WRL::ComPtr<IModelObject> stack_frame; in Initialize()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/tools/v8windbg/src/
H A Dv8windbg-extension.cc36 const WRL::ComPtr<IDebugHostType>& sp_type) { in DoesTypeDeriveFromObject()
48 WRL::ComPtr<IDebugHostSymbol> sp_type_symbol; in DoesTypeDeriveFromObject()
52 WRL::ComPtr<IDebugHostType> sp_base_type; in DoesTypeDeriveFromObject()
64 WRL::ComPtr<IDebugHostContext>& sp_ctx) { in GetV8ObjectType()
107 WRL::ComPtr<IDebugHostSymbol> sp_isolate_sym; in IsV8Module()
118 WRL::ComPtr<IDebugHostContext>& sp_ctx) { in GetV8Module()
152 WRL::ComPtr<IDebugHostModule> sp_module; in GetV8Module()
175 WRL::ComPtr<IDebugHostModule> sp_module; in GetV8Module()
266 WRL::ComPtr<IModelObject> method; in Initialize()
275 WRL::ComPtr<IModelObject> stack_frame; in Initialize()
[all …]

12345678910>>...110