aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/d3d/D3dDeviceInfo.hpp
blob: b88d929761b95d32dc9bdf0c2fffd438ee51429a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
 * $RCSfile$
 *
 * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
 *
 * Use is subject to license terms.
 *
 * $Revision$
 * $Date$
 * $State$
 */

#if !defined(D3DDEVICEINFO_H)
#define D3DDEVICEINFO_H

#include "StdAfx.h"

extern UINT vertexBufferMaxVertexLimit;

#define D3DDEPTHFORMATSIZE 6

class D3dDeviceInfo {
public:
    // Hardware Rasterizer
    // Transform & Light Hardware Rasterizer
    // Reference Rasterizer
    char deviceName[40];         // One of above name
    D3DDEVTYPE   deviceType;     // D3DDEVTYPE_HAL or D3DDEVTYPE_REF
    BOOL desktopCompatible;      // Can render in desktop mode
    BOOL fullscreenCompatible;   // Can render in fullscreen mode
                                 // using current desktop mode setting
	//issue 135 - adding device info
	char* deviceVendor;
	char* deviceRenderer;
	char* deviceVersion;

    // each bitmask correspond to the support of
    // D3DMULTISAMPLE_i_SAMPLES type, i = 2...16
    DWORD multiSampleSupport;

    // TRUE when d3dDepthFormat[i] support
    BOOL  depthFormatSupport[D3DDEPTHFORMATSIZE];

    // depth format select
    D3DFORMAT depthStencilFormat;

    // max z buffer depth support
    UINT  maxZBufferDepthSize;

	// max stencil buffer depth support
    UINT  maxStencilDepthSize; // new on 1.4

    // Max vertex count support for each primitive
    DWORD maxVertexCount[GEO_TYPE_INDEXED_LINE_STRIP_SET+1];

	BOOL supportNPOT; // new on 1.5 NonPower of Two texture size
	BOOL supportStencil; // new on 1.4
	BOOL supportShaders11;
    BOOL isHardware;
    BOOL isHardwareTnL;
	BOOL supportDepthBias;
	BOOL supportRasterPresImmediate;
    BOOL canRenderWindowed;
    BOOL supportMipmap;
    BOOL texturePow2Only;
    BOOL textureSquareOnly;
    BOOL linePatternSupport;
    BOOL texBorderModeSupport;
    BOOL texLerpSupport;
    DWORD maxTextureUnitStageSupport;
    DWORD maxTextureBlendStages;
    DWORD maxSimultaneousTextures;
    DWORD maxTextureWidth;
    DWORD maxTextureHeight;
    DWORD maxTextureDepth;
    DWORD maxPrimitiveCount;
    DWORD maxVertexIndex;
    DWORD maxActiveLights;
    DWORD maxPointSize;
    DWORD rangeFogEnable;
    D3DRENDERSTATETYPE  fogMode;
    int texMask;
    int maxAnisotropy;

	BOOL supportStreamOffset;

    D3dDeviceInfo();
    ~D3dDeviceInfo();

    // set capabilities of this device
    VOID setCaps(D3DCAPS9 *d3dCaps);
    BOOL supportAntialiasing();
    D3DMULTISAMPLE_TYPE getBestMultiSampleType();
    int getTextureFeaturesMask();
    void findDepthStencilFormat(int minZDepth, int minZDepthStencil);


};

#endif