OSDN Git Service

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