]> git.cworth.org Git - apitrace-tests/blob - apps/d3d11/tri.cpp
2227b811667c9a2087b4fbca4cbb76b704dd4b22
[apitrace-tests] / apps / d3d11 / tri.cpp
1 /**************************************************************************
2  *
3  * Copyright 2012 Jose Fonseca
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26
27 #include <stdio.h>
28 #include <stddef.h>
29
30 #include <initguid.h>
31 #include <windows.h>
32
33 #include "compat.h"
34
35 #include <d3d11.h>
36
37 #include "tri_vs_4_0.h"
38 #include "tri_ps_4_0.h"
39
40
41 static IDXGISwapChain* g_pSwapChain = NULL;
42 static ID3D11Device * g_pDevice = NULL;
43 static ID3D11DeviceContext * g_pDeviceContext = NULL;
44
45
46 int
47 main(int argc, char *argv[])
48 {
49     HRESULT hr;
50
51     HINSTANCE hInstance = GetModuleHandle(NULL);
52
53     WNDCLASSEX wc = {
54         sizeof(WNDCLASSEX),
55         CS_CLASSDC,
56         DefWindowProc,
57         0,
58         0,
59         hInstance,
60         NULL,
61         NULL,
62         NULL,
63         NULL,
64         "SimpleDX10",
65         NULL
66     };
67     RegisterClassEx(&wc);
68
69     const int WindowWidth = 250;
70     const int WindowHeight = 250;
71     BOOL Windowed = TRUE;
72
73     DWORD dwStyle = WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW;
74
75     RECT rect = {0, 0, WindowWidth, WindowHeight};
76     AdjustWindowRect(&rect, dwStyle, FALSE);
77
78     HWND hWnd = CreateWindow(wc.lpszClassName,
79                              "Simple example using DirectX10",
80                              dwStyle,
81                              CW_USEDEFAULT, CW_USEDEFAULT,
82                              rect.right - rect.left,
83                              rect.bottom - rect.top,
84                              NULL,
85                              NULL,
86                              hInstance,
87                              NULL);
88     if (!hWnd) {
89         return 1;
90     }
91
92     ShowWindow(hWnd, SW_SHOW);
93
94     UINT Flags = 0;
95     if (LoadLibraryA("d3d11sdklayers")) {
96         Flags |= D3D11_CREATE_DEVICE_DEBUG;
97     }
98
99     DXGI_SWAP_CHAIN_DESC SwapChainDesc;
100     ZeroMemory(&SwapChainDesc, sizeof SwapChainDesc);
101     SwapChainDesc.BufferDesc.Width = WindowWidth;
102     SwapChainDesc.BufferDesc.Height = WindowHeight;
103     SwapChainDesc.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;;
104     SwapChainDesc.BufferDesc.RefreshRate.Numerator = 60;
105     SwapChainDesc.BufferDesc.RefreshRate.Denominator = 1;
106     SwapChainDesc.SampleDesc.Quality = 0;
107     SwapChainDesc.SampleDesc.Count = 1;
108     SwapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
109     SwapChainDesc.BufferCount = 2;
110     SwapChainDesc.OutputWindow = hWnd;
111     SwapChainDesc.Windowed = true;
112     SwapChainDesc.SwapEffect = DXGI_SWAP_EFFECT_DISCARD;
113
114     static const D3D_FEATURE_LEVEL FeatureLevels[] = {
115         D3D_FEATURE_LEVEL_11_0,
116         D3D_FEATURE_LEVEL_10_1,
117         D3D_FEATURE_LEVEL_10_0
118     };
119
120     hr = D3D11CreateDeviceAndSwapChain(NULL, /* pAdapter */
121                                        D3D_DRIVER_TYPE_HARDWARE,
122                                        NULL, /* Software */
123                                        Flags,
124                                        FeatureLevels,
125                                        sizeof FeatureLevels / sizeof FeatureLevels[0],
126                                        D3D11_SDK_VERSION,
127                                        &SwapChainDesc,
128                                        &g_pSwapChain,
129                                        &g_pDevice,
130                                        NULL, /* pFeatureLevel */
131                                        &g_pDeviceContext); /* ppImmediateContext */
132     if (FAILED(hr)) {
133         return 1;
134     }
135
136     ID3D11RenderTargetView *pRenderTargetView = NULL;
137     ID3D11Texture2D* pBackBuffer;
138     hr = g_pSwapChain->GetBuffer(0, IID_ID3D11Texture2D, (void **)&pBackBuffer);
139     if (FAILED(hr)) {
140         return 1;
141     }
142     D3D11_RENDER_TARGET_VIEW_DESC RenderTargetViewDesc;
143     ZeroMemory(&RenderTargetViewDesc, sizeof RenderTargetViewDesc);
144     RenderTargetViewDesc.Format = SwapChainDesc.BufferDesc.Format;
145     RenderTargetViewDesc.ViewDimension = D3D11_RTV_DIMENSION_TEXTURE2D;
146     RenderTargetViewDesc.Texture2D.MipSlice = 0;
147     hr = g_pDevice->CreateRenderTargetView(pBackBuffer, &RenderTargetViewDesc, &pRenderTargetView);
148     if (FAILED(hr)) {
149         return 1;
150     }
151     pBackBuffer->Release();
152
153     g_pDeviceContext->OMSetRenderTargets(1, &pRenderTargetView, NULL);
154
155     const float clearColor[4] = { 0.3f, 0.1f, 0.3f, 1.0f };
156     g_pDeviceContext->ClearRenderTargetView(pRenderTargetView, clearColor);
157
158     ID3D11VertexShader * pVertexShader;
159     hr = g_pDevice->CreateVertexShader(g_VS, sizeof g_VS, NULL, &pVertexShader);
160     if (FAILED(hr)) {
161         return 1;
162     }
163
164     struct Vertex {
165         float position[4];
166         float color[4];
167     };
168
169     static const D3D11_INPUT_ELEMENT_DESC InputElementDescs[] = {
170         { "POSITION", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, offsetof(Vertex, position), D3D11_INPUT_PER_VERTEX_DATA, 0 },
171         { "COLOR",    0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, offsetof(Vertex, color),    D3D11_INPUT_PER_VERTEX_DATA, 0 }
172     };
173
174     ID3D11InputLayout *pVertexLayout = NULL;
175     hr = g_pDevice->CreateInputLayout(InputElementDescs,
176                                       2,
177                                       g_VS,
178                                       sizeof g_VS,
179                                       &pVertexLayout);
180     if (FAILED(hr)) {
181         return 1;
182     }
183
184     g_pDeviceContext->IASetInputLayout(pVertexLayout);
185
186     ID3D11PixelShader * pPixelShader;
187     hr = g_pDevice->CreatePixelShader(g_PS, sizeof g_PS, NULL, &pPixelShader);
188     if (FAILED(hr)) {
189         return 1;
190     }
191
192     g_pDeviceContext->VSSetShader(pVertexShader, NULL, 0);
193     g_pDeviceContext->PSSetShader(pPixelShader, NULL, 0);
194
195     static const Vertex vertices[] = {
196         { { -0.9f, -0.9f, 0.5f, 1.0f}, { 0.8f, 0.0f, 0.0f, 0.1f } },
197         { {  0.9f, -0.9f, 0.5f, 1.0f}, { 0.0f, 0.9f, 0.0f, 0.1f } },
198         { {  0.0f,  0.9f, 0.5f, 1.0f}, { 0.0f, 0.0f, 0.7f, 0.1f } },
199     };
200
201     D3D11_BUFFER_DESC BufferDesc;
202     ZeroMemory(&BufferDesc, sizeof BufferDesc);
203     BufferDesc.Usage = D3D11_USAGE_DYNAMIC;
204     BufferDesc.ByteWidth = sizeof vertices;
205     BufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER;
206     BufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
207     BufferDesc.MiscFlags = 0;
208
209     D3D11_SUBRESOURCE_DATA BufferData;
210     BufferData.pSysMem = vertices;
211     BufferData.SysMemPitch = 0;
212     BufferData.SysMemSlicePitch = 0;
213
214     ID3D11Buffer *pVertexBuffer;
215     hr = g_pDevice->CreateBuffer(&BufferDesc, &BufferData, &pVertexBuffer);
216     if (FAILED(hr)) {
217         return 1;
218     }
219
220     UINT Stride = sizeof(Vertex);
221     UINT Offset = 0;
222     g_pDeviceContext->IASetVertexBuffers(0, 1, &pVertexBuffer, &Stride, &Offset);
223     
224     D3D11_VIEWPORT ViewPort;
225     ViewPort.TopLeftX = 0;
226     ViewPort.TopLeftY = 0;
227     ViewPort.Width = WindowWidth;
228     ViewPort.Height = WindowHeight;
229     ViewPort.MinDepth = 0.0f;
230     ViewPort.MaxDepth = 1.0f;
231     g_pDeviceContext->RSSetViewports(1, &ViewPort);
232     
233     D3D11_RASTERIZER_DESC RasterizerDesc;
234     ZeroMemory(&RasterizerDesc, sizeof RasterizerDesc);
235     RasterizerDesc.CullMode = D3D11_CULL_NONE;
236     RasterizerDesc.FillMode = D3D11_FILL_SOLID;
237     RasterizerDesc.FrontCounterClockwise = true;
238     RasterizerDesc.DepthClipEnable = true;
239     ID3D11RasterizerState* pRasterizerState = NULL;
240     hr = g_pDevice->CreateRasterizerState(&RasterizerDesc, &pRasterizerState);
241     if (FAILED(hr)) {
242         return 1;
243     }
244     g_pDeviceContext->RSSetState(pRasterizerState);
245
246     g_pDeviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP);
247     g_pDeviceContext->Draw(3, 0);
248
249     g_pSwapChain->Present(0, 0);
250
251
252     ID3D11Buffer *pNullBuffer = NULL;
253     UINT NullStride = 0;
254     UINT NullOffset = 0;
255     g_pDeviceContext->IASetVertexBuffers(0, 1, &pNullBuffer, &NullStride, &NullOffset);
256     pVertexBuffer->Release();
257
258     g_pDeviceContext->OMSetRenderTargets(0, NULL, NULL);
259     pRenderTargetView->Release();
260
261     g_pDeviceContext->IASetInputLayout(NULL);
262     pVertexLayout->Release();
263
264     g_pDeviceContext->VSSetShader(NULL, NULL, 0);
265     pVertexShader->Release();
266
267     g_pDeviceContext->PSSetShader(NULL, NULL, 0);
268     pPixelShader->Release();
269
270     g_pDeviceContext->RSSetState(NULL);
271     pRasterizerState->Release();
272
273     g_pSwapChain->Release();
274     g_pSwapChain = NULL;
275
276     g_pDeviceContext->Release();
277     g_pDeviceContext = NULL;
278
279     g_pDevice->Release();
280     g_pDevice = NULL;
281
282     DestroyWindow(hWnd);
283
284     return 0;
285 }
286