00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef GRAPHICS_DEVICE_COMBO_INFORMATION_H_
00026 #define GRAPHICS_DEVICE_COMBO_INFORMATION_H_
00027
00028 #include <Core/Container/ArrayList.h>
00029 #include <Graphics/Primitive/VertexProcessingType.h>
00030
00031 namespace Lamp{
00032
00033 class GraphicsDeviceEnumeration;
00034 class GraphicsDeviceInformation;
00035 class ConfirmGraphicsDevice;
00036
00037
00038
00039
00040
00041 class GraphicsDeviceComboInformation{
00042 friend class GraphicsDeviceInformation;
00043 public:
00044
00045
00046
00047
00048
00049 virtual D3DFORMAT getAdapterFormat(){ return adapterFormat_; }
00050
00051
00052
00053
00054
00055 virtual D3DFORMAT getBackBufferFormat(){ return backBufferFormat_; }
00056
00057
00058
00059
00060
00061 virtual bool isWindowed(){ return isWindowed_; }
00062
00063
00064
00065
00066
00067
00068 virtual int getAdapterOrdinal(){ return adapterOrdinal_; }
00069
00070
00071
00072
00073
00074 virtual D3DDEVTYPE getDeviceType(){ return deviceType_; }
00075
00076
00077
00078
00079
00080
00081 virtual int getDepthStencilFormatCount() const{
00082 return depthStencilFormats_.getCount();
00083 }
00084
00085
00086
00087
00088
00089
00090 virtual D3DFORMAT getDepthStencilFormat(int index){
00091 return depthStencilFormats_.get(index);
00092 }
00093
00094
00095
00096
00097
00098
00099 virtual int getMultiSampleTypeCount() const{
00100 return multiSampleTypes_.getCount();
00101 }
00102
00103
00104
00105
00106
00107
00108 virtual D3DMULTISAMPLE_TYPE getMultiSampleType(int index){
00109 return multiSampleTypes_.get(index);
00110 }
00111
00112
00113
00114
00115
00116
00117
00118
00119 virtual u_int getMultiSampleTypeQuality(int index){
00120 return multiSampleTypeQualities_.get(index);
00121 }
00122
00123
00124
00125
00126
00127
00128 virtual int getMultiSampleConflictCount() const{
00129 return multiSampleConflictFormats_.getCount();
00130 }
00131
00132
00133
00134
00135
00136
00137 virtual D3DFORMAT getMultiSampleConflictFormat(int index){
00138 return multiSampleConflictFormats_.get(index);
00139 }
00140
00141
00142
00143
00144
00145
00146 virtual D3DMULTISAMPLE_TYPE getMultiSampleConflictType(int index){
00147 return multiSampleConflictTypes_.get(index);
00148 }
00149
00150
00151
00152
00153
00154
00155 virtual int getVertexProcessingTypeCount() const{
00156 return vertexProcessingTypes_.getCount();
00157 }
00158
00159
00160
00161
00162
00163
00164 virtual VertexProcessingType getVertexProcessingType(int index){
00165 return vertexProcessingTypes_.get(index);
00166 }
00167
00168
00169
00170
00171
00172
00173 virtual int getPresentationIntervalCount() const{
00174 return presentationInterval_.getCount();
00175 }
00176
00177
00178
00179
00180
00181
00182 virtual u_int getPresentationInterval(int index){
00183 return presentationInterval_.get(index);
00184 }
00185
00186
00187
00188
00189
00190
00191 virtual String toString();
00192
00193
00194 protected:
00195
00196
00197
00198 GraphicsDeviceComboInformation(
00199 D3DFORMAT adapterFormat, D3DFORMAT backBufferFormat, bool isWindowed);
00200
00201
00202
00203
00204 virtual ~GraphicsDeviceComboInformation();
00205
00206
00207
00208
00209
00210
00211
00212 virtual bool enumerate(GraphicsDeviceEnumeration* enumeration,
00213 GraphicsDeviceInformation* deviceInformation);
00214
00215
00216
00217
00218
00219
00220 virtual void buildDepthStencilFormats(
00221 u_int minimumDepthBits, u_int minimumStencilBits);
00222
00223
00224
00225
00226 virtual void buildMultiSampleType();
00227
00228
00229
00230
00231 virtual void buildMultiSampleConflict();
00232
00233
00234
00235
00236
00237
00238
00239 virtual void buildVertexProcessingType(
00240 const D3DCapacity& deviceCapability, bool usesMixedVertexProcessing,
00241 ConfirmGraphicsDevice* confirmDevice);
00242
00243
00244
00245
00246
00247 virtual void buildPresentationInterval(const D3DCapacity& deviceCapability);
00248
00249 private:
00250
00251 GraphicsDeviceComboInformation(const GraphicsDeviceComboInformation& copy);
00252
00253
00254 void operator =(const GraphicsDeviceComboInformation& copy);
00255
00256
00257 ArrayList<D3DFORMAT> depthStencilFormats_;
00258
00259 ArrayList<D3DMULTISAMPLE_TYPE> multiSampleTypes_;
00260
00261 ArrayList<u_int> multiSampleTypeQualities_;
00262
00263 ArrayList<D3DFORMAT> multiSampleConflictFormats_;
00264
00265 ArrayList<D3DMULTISAMPLE_TYPE> multiSampleConflictTypes_;
00266
00267 ArrayList<VertexProcessingType> vertexProcessingTypes_;
00268
00269 ArrayList<u_int> presentationInterval_;
00270
00271
00272 int adapterOrdinal_;
00273
00274 D3DDEVTYPE deviceType_;
00275
00276 D3DFORMAT adapterFormat_;
00277
00278 D3DFORMAT backBufferFormat_;
00279
00280 bool isWindowed_;
00281 };
00282
00283
00284 }
00285 #endif // End of GRAPHICS_DEVICE_COMBO_INFORMATION_H_
00286