OSDN Git Service

#32713 初コミット。SVNrev567時点での、ファイルはbranch/140707(ReBuild XGVersion)から移行したもの。
[dtxmaniaxg-verk/dtxmaniaxg-verk-git.git] / SlimDXc_Jun2010(VC++2008) / source / direct3d11 / EffectTechniqueDescription11.cpp
1 #include "stdafx.h"
2 /*
3 * Copyright (c) 2007-2010 SlimDX Group
4
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 * THE SOFTWARE.
22 */
23
24 #include <d3d11.h>
25 #include <d3dx11effect.h>
26
27 #include "EffectTechniqueDescription11.h"
28
29 using namespace System;
30
31 namespace SlimDX
32 {
33 namespace Direct3D11
34
35         EffectTechniqueDescription::EffectTechniqueDescription( const D3DX11_TECHNIQUE_DESC& native )
36         {
37                 m_Name = gcnew String( native.Name );
38                 m_Passes = native.Passes;
39                 m_Annotations = native.Annotations;
40         }
41         
42         String^ EffectTechniqueDescription::Name::get()
43         {
44                 return m_Name;
45         }
46         
47         int EffectTechniqueDescription::PassCount::get()
48         {
49                 return m_Passes;
50         }
51         
52         int EffectTechniqueDescription::AnnotationCount::get()
53         {
54                 return m_Annotations;
55         }
56
57         bool EffectTechniqueDescription::operator == ( EffectTechniqueDescription left, EffectTechniqueDescription right )
58         {
59                 return EffectTechniqueDescription::Equals( left, right );
60         }
61
62         bool EffectTechniqueDescription::operator != ( EffectTechniqueDescription left, EffectTechniqueDescription right )
63         {
64                 return !EffectTechniqueDescription::Equals( left, right );
65         }
66
67         int EffectTechniqueDescription::GetHashCode()
68         {
69                 return m_Name->GetHashCode() + m_Passes.GetHashCode() + m_Annotations.GetHashCode();
70         }
71
72         bool EffectTechniqueDescription::Equals( Object^ value )
73         {
74                 if( value == nullptr )
75                         return false;
76
77                 if( value->GetType() != GetType() )
78                         return false;
79
80                 return Equals( safe_cast<EffectTechniqueDescription>( value ) );
81         }
82
83         bool EffectTechniqueDescription::Equals( EffectTechniqueDescription value )
84         {
85                 return ( m_Name == value.m_Name && m_Passes == value.m_Passes && m_Annotations == value.m_Annotations );
86         }
87
88         bool EffectTechniqueDescription::Equals( EffectTechniqueDescription% value1, EffectTechniqueDescription% value2 )
89         {
90                 return ( value1.m_Name == value2.m_Name && value1.m_Passes == value2.m_Passes && value1.m_Annotations == value2.m_Annotations );
91         }
92 }
93 }