OSDN Git Service

#32713 初コミット。SVNrev567時点での、ファイルはbranch/140707(ReBuild XGVersion)から移行したもの。
[dtxmaniaxg-verk/dtxmaniaxg-verk-git.git] / SlimDXc_Jun2010(VC++2008) / source / direct3d10 / RenderTargetViewDescription.h
1 /*
2 * Copyright (c) 2007-2010 SlimDX Group
3
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 * THE SOFTWARE.
21 */
22 #pragma once
23
24 #include "../dxgi/Enums.h"
25
26 #include "Enums.h"
27
28 namespace SlimDX
29 {
30         namespace Direct3D10
31         {       
32                 public value class RenderTargetViewDescription : System::IEquatable<RenderTargetViewDescription>
33                 {
34                 private:
35                         DXGI::Format m_Format;
36                         RenderTargetViewDimension m_ViewDimension;
37                         int m_ElementOffset;
38                         int m_ElementWidth;
39                         int m_MipSlice;
40                         int m_FirstArraySlice;
41                         int m_ArraySize;
42                         int m_FirstDepthSlice;
43                         int m_DepthSliceCount;
44                                 
45                 internal:
46                         RenderTargetViewDescription( const D3D10_RENDER_TARGET_VIEW_DESC& native );
47                         
48                         D3D10_RENDER_TARGET_VIEW_DESC CreateNativeVersion();
49                 
50                 public:
51                         property DXGI::Format Format
52                         {
53                                 DXGI::Format get();
54                                 void set( DXGI::Format value );
55                         }
56                         
57                         property RenderTargetViewDimension Dimension
58                         {
59                                 RenderTargetViewDimension get();
60                                 void set( RenderTargetViewDimension value );
61                         }
62                         
63                         property int ElementOffset
64                         {
65                                 int get();
66                                 void set( int value );
67                         }
68                         
69                         property int ElementWidth
70                         {
71                                 int get();
72                                 void set( int value );
73                         }
74                         
75                         property int MipSlice
76                         {
77                                 int get();
78                                 void set( int value );
79                         }
80                         
81                         property int FirstArraySlice
82                         {
83                                 int get();
84                                 void set( int value );
85                         }
86                         
87                         property int ArraySize
88                         {
89                                 int get();
90                                 void set( int value );
91                         }
92                         
93                         property int FirstDepthSlice
94                         {
95                                 int get();
96                                 void set( int value );
97                         }
98                         
99                         property int DepthSliceCount
100                         {
101                                 int get();
102                                 void set( int value );
103                         }
104
105                         static bool operator == ( RenderTargetViewDescription left, RenderTargetViewDescription right );
106                         static bool operator != ( RenderTargetViewDescription left, RenderTargetViewDescription right );
107
108                         virtual int GetHashCode() override;
109                         virtual bool Equals( System::Object^ obj ) override;
110                         virtual bool Equals( RenderTargetViewDescription other );
111                         static bool Equals( RenderTargetViewDescription% value1, RenderTargetViewDescription% value2 );
112                 };
113         }
114 };