summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/d3d1x/progs/d3d10tri/d3d10tri.cpp
blob: 90b97f8a5d4610fe951a4e3c64366f6a928abcc3 (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/**************************************************************************
 *
 * Copyright 2010 Luca Barbieri
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial
 * portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 **************************************************************************/

#include "d3d10app.h"
#include "d3d10tri.hlsl.ps.h"
#include "d3d10tri.hlsl.vs.h"

struct vertex {
 float position[4];
 float color[4];
};

static struct vertex vertices[3] =
{
 {
	 { 0.0f, 0.9f, 0.5f, 1.0f },
	 { 1.0f, 0.0f, 0.0f, 1.0f }
 },
 {
	 { 0.9f, -0.9f, 0.5f, 1.0f },
	 { 0.0f, 0.0f, 1.0f, 1.0f }
 },
 {
	 { -0.9f, -0.9f, 0.5f, 1.0f },
	 { 0.0f, 1.0f, 0.0f, 1.0f }
 },
};

struct d3d10tri : public d3d10_application
{
	ID3D10PixelShader* ps;
	ID3D10VertexShader* vs;
	ID3D10InputLayout* layout;
	ID3D10Buffer* vb;

	virtual bool init(ID3D10Device* dev, int argc, char** argv)
	{
		ensure(dev->CreatePixelShader(g_ps, sizeof(g_ps), &ps));
		ensure(dev->CreateVertexShader(g_vs, sizeof(g_vs), &vs));

		D3D10_INPUT_ELEMENT_DESC elements[] =
		{
			{"POSITION", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, 0, D3D10_INPUT_PER_VERTEX_DATA, 0},
			{"COLOR", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, 16, D3D10_INPUT_PER_VERTEX_DATA, 0},
		};

		ensure(dev->CreateInputLayout(elements, sizeof(elements) / sizeof(elements[0]), g_vs, sizeof(g_vs), &layout));
		D3D10_BUFFER_DESC bufferd;
		bufferd.ByteWidth = sizeof(vertices);
		bufferd.Usage = D3D10_USAGE_IMMUTABLE;
		bufferd.BindFlags = D3D10_BIND_VERTEX_BUFFER;
		bufferd.CPUAccessFlags = 0;
		bufferd.MiscFlags = 0;

		D3D10_SUBRESOURCE_DATA buffersd;
		buffersd.pSysMem = vertices;
		buffersd.SysMemPitch = sizeof(vertices);
		buffersd.SysMemSlicePitch = sizeof(vertices);

		ensure(dev->CreateBuffer(&bufferd, &buffersd, &vb));

		return true;
	}

	virtual void draw(ID3D10Device* ctx, ID3D10RenderTargetView* rtv, unsigned width, unsigned height, double time)
	{
		float clear_color[4] = {1, 0, 1, 1};
		D3D10_VIEWPORT vp;
		memset(&vp, 0, sizeof(vp));
		vp.Width = (unsigned)width;
		vp.Height = (unsigned)height;
		vp.MaxDepth = 1.0f;

		ctx->OMSetRenderTargets(1, &rtv, 0);
		ctx->RSSetViewports(1, &vp);

		ctx->ClearRenderTargetView(rtv, clear_color);

		ctx->IASetPrimitiveTopology(D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
		ctx->IASetInputLayout(layout);
		unsigned stride = 2 * 4 * 4;
		unsigned offset = 0;
		ctx->IASetVertexBuffers(0, 1, &vb, &stride, &offset);

		ctx->VSSetShader(vs);
		ctx->PSSetShader(ps);	

		ctx->Draw(3, 0);
	}
};

d3d10_application* d3d10_application_create()
{
	return new d3d10tri();
}