OSDN Git Service

作業部屋#50802 画面キャプチャができなくなっていた問題を暫定対応(F12キー固定で対応中)
[dtxmaniaxg-verk/dtxmaniaxg-verk-git.git] / SlimDXc_Jun2010(VC++2008) / source / direct3d11 / CounterCapabilities11.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
26 #include "CounterCapabilities11.h"
27
28 namespace SlimDX
29 {
30 namespace Direct3D11
31
32         CounterCapabilities::CounterCapabilities( const D3D11_COUNTER_INFO& native )
33         {
34                 m_LastDeviceDependentCounter = static_cast<int>( native.LastDeviceDependentCounter );
35                 m_NumSimultaneousCounters = native.NumSimultaneousCounters;
36                 m_NumDetectableParallelUnits = native.NumDetectableParallelUnits;
37         }
38         
39         int CounterCapabilities::LastDeviceDependentCounter::get()
40         {
41                 return m_LastDeviceDependentCounter;
42         }
43         
44         int CounterCapabilities::MaximumSimultaneousCounters::get()
45         {
46                 return m_NumSimultaneousCounters;
47         }
48         
49         int CounterCapabilities::MaximumParallelUnits::get()
50         {
51                 return m_NumDetectableParallelUnits;
52         }
53
54         bool CounterCapabilities::operator == ( CounterCapabilities left, CounterCapabilities right )
55         {
56                 return CounterCapabilities::Equals( left, right );
57         }
58
59         bool CounterCapabilities::operator != ( CounterCapabilities left, CounterCapabilities right )
60         {
61                 return !CounterCapabilities::Equals( left, right );
62         }
63
64         int CounterCapabilities::GetHashCode()
65         {
66                 return m_LastDeviceDependentCounter.GetHashCode() + m_NumSimultaneousCounters.GetHashCode() + m_NumDetectableParallelUnits.GetHashCode();
67         }
68
69         bool CounterCapabilities::Equals( Object^ value )
70         {
71                 if( value == nullptr )
72                         return false;
73
74                 if( value->GetType() != GetType() )
75                         return false;
76
77                 return Equals( safe_cast<CounterCapabilities>( value ) );
78         }
79
80         bool CounterCapabilities::Equals( CounterCapabilities value )
81         {
82                 return ( m_LastDeviceDependentCounter == value.m_LastDeviceDependentCounter && m_NumSimultaneousCounters == value.m_NumSimultaneousCounters && m_NumDetectableParallelUnits == value.m_NumDetectableParallelUnits );
83         }
84
85         bool CounterCapabilities::Equals( CounterCapabilities% value1, CounterCapabilities% value2 )
86         {
87                 return ( value1.m_LastDeviceDependentCounter == value2.m_LastDeviceDependentCounter && value1.m_NumSimultaneousCounters == value2.m_NumSimultaneousCounters && value1.m_NumDetectableParallelUnits == value2.m_NumDetectableParallelUnits );
88         }
89 }
90 }