This repository was archived by the owner on Mar 30, 2019. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 494494 <map param =" ID2D\dDeviceContext5::CreateColorContextFromSimpleColorProfile::colorContext" attribute =" out fast" />
495495 <map param =" ID2D\dEffectContext2::CreateColorContextFromDxgiColorSpace::colorContext" attribute =" out fast" />
496496 <map param =" ID2D\dEffectContext2::CreateColorContextFromSimpleColorProfile::colorContext" attribute =" out fast" />
497+
498+ <!-- Svg documents and elements -->
499+ <map method =" ID2D1SvgDocument::FindElementById" hresult =" true" check =" false" visibility =" private" name =" TryFindElementById_" />
500+ <map method =" ID2D1SvgAttribute::Clone" visibility =" internal" />
497501
498- <!--
502+ <!--
499503 // *****************************************************************
500504 // D2D1 Functions
501505 // *****************************************************************
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Text ;
5+
6+ namespace SharpDX . Direct2D1
7+ {
8+ public partial class SvgAttribute
9+ {
10+ /// <summary>
11+ /// Clones an svg attribute
12+ /// </summary>
13+ /// <returns></returns>
14+ public SvgAttribute Clone ( )
15+ {
16+ SvgAttribute svgAttribute ;
17+ Clone ( out svgAttribute ) ;
18+ return svgAttribute ;
19+ }
20+ }
21+ }
You can’t perform that action at this time.
0 commit comments