summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/nv50/nv50_state.c
blob: 778b9f5c9ac0eec58a799876f16f3ab6e028d59a (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
#include "pipe/p_state.h"
#include "pipe/p_defines.h"
#include "pipe/p_util.h"

#include "nv50_context.h"
#include "nv50_dma.h"
#include "nv50_state.h"

static void *
nv50_alpha_test_state_create(struct pipe_context *pipe,
			     const struct pipe_alpha_test_state *cso)
{
}

static void
nv50_alpha_test_state_bind(struct pipe_context *pipe, void *hwcso)
{
}

static void
nv50_alpha_test_state_delete(struct pipe_context *pipe, void *hwcso)
{
}

static void *
nv50_blend_state_create(struct pipe_context *pipe,
			const struct pipe_blend_state *cso)
{
}

static void
nv50_blend_state_bind(struct pipe_context *pipe, void *hwcso)
{
}

static void
nv50_blend_state_delete(struct pipe_context *pipe, void *hwcso)
{
}

static void *
nv50_sampler_state_create(struct pipe_context *pipe,
			  const struct pipe_sampler_state *cso)
{
}

static void
nv50_sampler_state_bind(struct pipe_context *pipe, unsigned unit,
			void *hwcso)
{
}

static void
nv50_sampler_state_delete(struct pipe_context *pipe, void *hwcso)
{
}

static void *
nv50_rasterizer_state_create(struct pipe_context *pipe,
			     const struct pipe_rasterizer_state *cso)
{
}

static void
nv50_rasterizer_state_bind(struct pipe_context *pipe, void *hwcso)
{
}

static void
nv50_rasterizer_state_delete(struct pipe_context *pipe, void *hwcso)
{
}

static void *
nv50_depth_stencil_state_create(struct pipe_context *pipe,
				const struct pipe_depth_stencil_state *cso)
{
}

static void
nv50_depth_stencil_state_bind(struct pipe_context *pipe, void *hwcso)
{
}

static void
nv50_depth_stencil_state_delete(struct pipe_context *pipe, void *hwcso)
{
}

static void *
nv50_vp_state_create(struct pipe_context *pipe,
		     const struct pipe_shader_state *cso)
{
}

static void
nv50_vp_state_bind(struct pipe_context *pipe, void *hwcso)
{
}

static void
nv50_vp_state_delete(struct pipe_context *pipe, void *hwcso)
{
}

static void *
nv50_fp_state_create(struct pipe_context *pipe,
		     const struct pipe_shader_state *cso)
{
}

static void
nv50_fp_state_bind(struct pipe_context *pipe, void *hwcso)
{
}

static void
nv50_fp_state_delete(struct pipe_context *pipe, void *hwcso)
{
}

static void
nv50_set_blend_color(struct pipe_context *pipe,
		     const struct pipe_blend_color *bcol)
{
}

static void
nv50_set_clip_state(struct pipe_context *pipe,
		    const struct pipe_clip_state *clip)
{
}

static void
nv50_set_clear_color_state(struct pipe_context *pipe,
			   const struct pipe_clear_color_state *ccol)
{
}

static void
nv50_set_constant_buffer(struct pipe_context *pipe, uint shader, uint index,
			 const struct pipe_constant_buffer *buf )
{
}

static void
nv50_set_framebuffer_state(struct pipe_context *pipe,
			   const struct pipe_framebuffer_state *fb)
{
}

static void
nv50_set_polygon_stipple(struct pipe_context *pipe,
			 const struct pipe_poly_stipple *stipple)
{
}

static void
nv50_set_sampler_units(struct pipe_context *pipe,
		       uint num_samplers, const uint *units)
{
}

static void
nv50_set_scissor_state(struct pipe_context *pipe,
		       const struct pipe_scissor_state *s)
{
}

static void
nv50_set_texture_state(struct pipe_context *pipe, unsigned unit,
		       struct pipe_texture *pt)
{
}

static void
nv50_set_viewport_state(struct pipe_context *pipe,
			const struct pipe_viewport_state *vpt)
{
}

static void
nv50_set_vertex_buffer(struct pipe_context *pipe, unsigned index,
		       const struct pipe_vertex_buffer *vb)
{
}

static void
nv50_set_vertex_element(struct pipe_context *pipe, unsigned index,
			const struct pipe_vertex_element *ve)
{
}

void
nv50_init_state_functions(struct nv50_context *nv50)
{
	nv50->pipe.create_alpha_test_state = nv50_alpha_test_state_create;
	nv50->pipe.bind_alpha_test_state = nv50_alpha_test_state_bind;
	nv50->pipe.delete_alpha_test_state = nv50_alpha_test_state_delete;

	nv50->pipe.create_blend_state = nv50_blend_state_create;
	nv50->pipe.bind_blend_state = nv50_blend_state_bind;
	nv50->pipe.delete_blend_state = nv50_blend_state_delete;

	nv50->pipe.create_sampler_state = nv50_sampler_state_create;
	nv50->pipe.bind_sampler_state = nv50_sampler_state_bind;
	nv50->pipe.delete_sampler_state = nv50_sampler_state_delete;

	nv50->pipe.create_rasterizer_state = nv50_rasterizer_state_create;
	nv50->pipe.bind_rasterizer_state = nv50_rasterizer_state_bind;
	nv50->pipe.delete_rasterizer_state = nv50_rasterizer_state_delete;

	nv50->pipe.create_depth_stencil_state = nv50_depth_stencil_state_create;
	nv50->pipe.bind_depth_stencil_state = nv50_depth_stencil_state_bind;
	nv50->pipe.delete_depth_stencil_state = nv50_depth_stencil_state_delete;

	nv50->pipe.create_vs_state = nv50_vp_state_create;
	nv50->pipe.bind_vs_state = nv50_vp_state_bind;
	nv50->pipe.delete_vs_state = nv50_vp_state_delete;

	nv50->pipe.create_fs_state = nv50_fp_state_create;
	nv50->pipe.bind_fs_state = nv50_fp_state_bind;
	nv50->pipe.delete_fs_state = nv50_fp_state_delete;

	nv50->pipe.set_blend_color = nv50_set_blend_color;
	nv50->pipe.set_clip_state = nv50_set_clip_state;
	nv50->pipe.set_clear_color_state = nv50_set_clear_color_state;
	nv50->pipe.set_constant_buffer = nv50_set_constant_buffer;
	nv50->pipe.set_framebuffer_state = nv50_set_framebuffer_state;
	nv50->pipe.set_polygon_stipple = nv50_set_polygon_stipple;
	nv50->pipe.set_sampler_units = nv50_set_sampler_units;
	nv50->pipe.set_scissor_state = nv50_set_scissor_state;
	nv50->pipe.set_texture_state = nv50_set_texture_state;
	nv50->pipe.set_viewport_state = nv50_set_viewport_state;

	nv50->pipe.set_vertex_buffer = nv50_set_vertex_buffer;
	nv50->pipe.set_vertex_element = nv50_set_vertex_element;

//	nv50->pipe.set_feedback_state = nv50_set_feedback_state;
//	nv50->pipe.set_feedback_buffer = nv50_set_feedback_buffer;
}