i965g: wip on removing GL stuff, trying to get a few files compiling
[mesa.git] / src / gallium / drivers / i965 / brw_context.h
1 /*
2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
4 develop this 3D driver.
5
6 Permission is hereby granted, free of charge, to any person obtaining
7 a copy of this software and associated documentation files (the
8 "Software"), to deal in the Software without restriction, including
9 without limitation the rights to use, copy, modify, merge, publish,
10 distribute, sublicense, and/or sell copies of the Software, and to
11 permit persons to whom the Software is furnished to do so, subject to
12 the following conditions:
13
14 The above copyright notice and this permission notice (including the
15 next paragraph) shall be included in all copies or substantial
16 portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 **********************************************************************/
27 /*
28 * Authors:
29 * Keith Whitwell <keith@tungstengraphics.com>
30 */
31
32
33 #ifndef BRWCONTEXT_INC
34 #define BRWCONTEXT_INC
35
36 #include "brw_structs.h"
37 #include "brw_winsys.h"
38 #include "pipe/p_state.h"
39
40
41 /* Glossary:
42 *
43 * URB - uniform resource buffer. A mid-sized buffer which is
44 * partitioned between the fixed function units and used for passing
45 * values (vertices, primitives, constants) between them.
46 *
47 * CURBE - constant URB entry. An urb region (entry) used to hold
48 * constant values which the fixed function units can be instructed to
49 * preload into the GRF when spawning a thread.
50 *
51 * VUE - vertex URB entry. An urb entry holding a vertex and usually
52 * a vertex header. The header contains control information and
53 * things like primitive type, Begin/end flags and clip codes.
54 *
55 * PUE - primitive URB entry. An urb entry produced by the setup (SF)
56 * unit holding rasterization and interpolation parameters.
57 *
58 * GRF - general register file. One of several register files
59 * addressable by programmed threads. The inputs (r0, payload, curbe,
60 * urb) of the thread are preloaded to this area before the thread is
61 * spawned. The registers are individually 8 dwords wide and suitable
62 * for general usage. Registers holding thread input values are not
63 * special and may be overwritten.
64 *
65 * MRF - message register file. Threads communicate (and terminate)
66 * by sending messages. Message parameters are placed in contiguous
67 * MRF registers. All program output is via these messages. URB
68 * entries are populated by sending a message to the shared URB
69 * function containing the new data, together with a control word,
70 * often an unmodified copy of R0.
71 *
72 * R0 - GRF register 0. Typically holds control information used when
73 * sending messages to other threads.
74 *
75 * EU or GEN4 EU: The name of the programmable subsystem of the
76 * i965 hardware. Threads are executed by the EU, the registers
77 * described above are part of the EU architecture.
78 *
79 * Fixed function units:
80 *
81 * CS - Command streamer. Notional first unit, little software
82 * interaction. Holds the URB entries used for constant data, ie the
83 * CURBEs.
84 *
85 * VF/VS - Vertex Fetch / Vertex Shader. The fixed function part of
86 * this unit is responsible for pulling vertices out of vertex buffers
87 * in vram and injecting them into the processing pipe as VUEs. If
88 * enabled, it first passes them to a VS thread which is a good place
89 * for the driver to implement any active vertex shader.
90 *
91 * GS - Geometry Shader. This corresponds to a new DX10 concept. If
92 * enabled, incoming strips etc are passed to GS threads in individual
93 * line/triangle/point units. The GS thread may perform arbitary
94 * computation and emit whatever primtives with whatever vertices it
95 * chooses. This makes GS an excellent place to implement GL's
96 * unfilled polygon modes, though of course it is capable of much
97 * more. Additionally, GS is used to translate away primitives not
98 * handled by latter units, including Quads and Lineloops.
99 *
100 * CS - Clipper. Mesa's clipping algorithms are imported to run on
101 * this unit. The fixed function part performs cliptesting against
102 * the 6 fixed clipplanes and makes descisions on whether or not the
103 * incoming primitive needs to be passed to a thread for clipping.
104 * User clip planes are handled via cooperation with the VS thread.
105 *
106 * SF - Strips Fans or Setup: Triangles are prepared for
107 * rasterization. Interpolation coefficients are calculated.
108 * Flatshading and two-side lighting usually performed here.
109 *
110 * WM - Windower. Interpolation of vertex attributes performed here.
111 * Fragment shader implemented here. SIMD aspects of EU taken full
112 * advantage of, as pixels are processed in blocks of 16.
113 *
114 * CC - Color Calculator. No EU threads associated with this unit.
115 * Handles blending and (presumably) depth and stencil testing.
116 */
117
118 #define BRW_MAX_CURBE (32*16)
119
120 struct brw_context;
121
122 #define PIPE_NEW_DEPTH_STENCIL_ALPHA 0x1
123 #define PIPE_NEW_RAST 0x2
124 #define PIPE_NEW_BLEND 0x2
125 #define PIPE_NEW_VIEWPORT 0x2
126 #define PIPE_NEW_FRAMEBUFFER 0x2
127 #define PIPE_NEW_VERTEX_BUFFER 0x2
128 #define PIPE_NEW_VERTEX_ELEMENT 0x2
129 #define PIPE_NEW_FRAGMENT_SHADER 0x2
130 #define PIPE_NEW_VERTEX_SHADER 0x2
131 #define PIPE_NEW_FRAGMENT_CONSTS 0x2
132 #define PIPE_NEW_VERTEX_CONSTS 0x2
133
134
135 #define BRW_NEW_URB_FENCE 0x1
136 #define BRW_NEW_FRAGMENT_PROGRAM 0x2
137 #define BRW_NEW_VERTEX_PROGRAM 0x4
138 #define BRW_NEW_INPUT_DIMENSIONS 0x8
139 #define BRW_NEW_CURBE_OFFSETS 0x10
140 #define BRW_NEW_REDUCED_PRIMITIVE 0x20
141 #define BRW_NEW_PRIMITIVE 0x40
142 #define BRW_NEW_CONTEXT 0x80
143 #define BRW_NEW_WM_INPUT_DIMENSIONS 0x100
144 #define BRW_NEW_PSP 0x800
145 #define BRW_NEW_WM_SURFACES 0x1000
146 #define BRW_NEW_FENCE 0x2000
147 #define BRW_NEW_INDICES 0x4000
148 #define BRW_NEW_VERTICES 0x8000
149 /**
150 * Used for any batch entry with a relocated pointer that will be used
151 * by any 3D rendering.
152 */
153 #define BRW_NEW_BATCH 0x10000
154 /** brw->depth_region updated */
155 #define BRW_NEW_DEPTH_BUFFER 0x20000
156 #define BRW_NEW_NR_WM_SURFACES 0x40000
157 #define BRW_NEW_NR_VS_SURFACES 0x80000
158 #define BRW_NEW_INDEX_BUFFER 0x100000
159
160 struct brw_state_flags {
161 /** State update flags signalled by mesa internals */
162 GLuint mesa;
163 /**
164 * State update flags signalled as the result of brw_tracked_state updates
165 */
166 GLuint brw;
167 /** State update flags signalled by brw_state_cache.c searches */
168 GLuint cache;
169 };
170
171
172 struct brw_vertex_program {
173 const struct tgsi_token *tokens;
174 GLuint id;
175 struct brw_winsys_buffer *const_buffer; /** Program constant buffer/surface */
176 GLboolean use_const_buffer;
177 };
178
179
180 /** Subclass of Mesa fragment program */
181 struct brw_fragment_program {
182 const struct tgsi_token *tokens;
183
184 GLuint id; /**< serial no. to identify frag progs, never re-used */
185 GLboolean isGLSL; /**< any IF/LOOP/CONT/BREAK instructions */
186
187 struct brw_winsys_buffer *const_buffer; /** Program constant buffer/surface */
188 GLboolean use_const_buffer;
189 };
190
191
192 /* Data about a particular attempt to compile a program. Note that
193 * there can be many of these, each in a different GL state
194 * corresponding to a different brw_wm_prog_key struct, with different
195 * compiled programs:
196 */
197 struct brw_wm_prog_data {
198 GLuint curb_read_length;
199 GLuint urb_read_length;
200
201 GLuint first_curbe_grf;
202 GLuint total_grf;
203 GLuint total_scratch;
204
205 GLuint nr_params; /**< number of float params/constants */
206 GLboolean error;
207
208 /* Pointer to tracked values (only valid once
209 * _mesa_load_state_parameters has been called at runtime).
210 */
211 const GLfloat *param[BRW_MAX_CURBE];
212 };
213
214 struct brw_sf_prog_data {
215 GLuint urb_read_length;
216 GLuint total_grf;
217
218 /* Each vertex may have upto 12 attributes, 4 components each,
219 * except WPOS which requires only 2. (11*4 + 2) == 44 ==> 11
220 * rows.
221 *
222 * Actually we use 4 for each, so call it 12 rows.
223 */
224 GLuint urb_entry_size;
225 };
226
227 struct brw_clip_prog_data {
228 GLuint curb_read_length; /* user planes? */
229 GLuint clip_mode;
230 GLuint urb_read_length;
231 GLuint total_grf;
232 };
233
234 struct brw_gs_prog_data {
235 GLuint urb_read_length;
236 GLuint total_grf;
237 };
238
239 struct brw_vs_prog_data {
240 GLuint curb_read_length;
241 GLuint urb_read_length;
242 GLuint total_grf;
243 GLuint outputs_written;
244 GLuint nr_params; /**< number of float params/constants */
245
246 GLuint inputs_read;
247
248 /* Used for calculating urb partitions:
249 */
250 GLuint urb_entry_size;
251 };
252
253
254 /* Size == 0 if output either not written, or always [0,0,0,1]
255 */
256 struct brw_vs_ouput_sizes {
257 GLubyte output_size[PIPE_MAX_SHADER_OUTPUTS];
258 };
259
260
261 /** Number of texture sampler units */
262 #define BRW_MAX_TEX_UNIT 16
263
264 /**
265 * Size of our surface binding table for the WM.
266 * This contains pointers to the drawing surfaces and current texture
267 * objects and shader constant buffers (+2).
268 */
269 #define BRW_WM_MAX_SURF (MAX_DRAW_BUFFERS + BRW_MAX_TEX_UNIT + 1)
270
271 /**
272 * Helpers to convert drawing buffers, textures and constant buffers
273 * to surface binding table indexes, for WM.
274 */
275 #define SURF_INDEX_DRAW(d) (d)
276 #define SURF_INDEX_FRAG_CONST_BUFFER (MAX_DRAW_BUFFERS)
277 #define SURF_INDEX_TEXTURE(t) (MAX_DRAW_BUFFERS + 1 + (t))
278
279 /**
280 * Size of surface binding table for the VS.
281 * Only one constant buffer for now.
282 */
283 #define BRW_VS_MAX_SURF 1
284
285 /**
286 * Only a VS constant buffer
287 */
288 #define SURF_INDEX_VERT_CONST_BUFFER 0
289
290
291 enum brw_cache_id {
292 BRW_CC_VP,
293 BRW_CC_UNIT,
294 BRW_WM_PROG,
295 BRW_SAMPLER_DEFAULT_COLOR,
296 BRW_SAMPLER,
297 BRW_WM_UNIT,
298 BRW_SF_PROG,
299 BRW_SF_VP,
300 BRW_SF_UNIT,
301 BRW_VS_UNIT,
302 BRW_VS_PROG,
303 BRW_GS_UNIT,
304 BRW_GS_PROG,
305 BRW_CLIP_VP,
306 BRW_CLIP_UNIT,
307 BRW_CLIP_PROG,
308 BRW_SS_SURFACE,
309 BRW_SS_SURF_BIND,
310
311 BRW_MAX_CACHE
312 };
313
314 struct brw_cache_item {
315 /**
316 * Effectively part of the key, cache_id identifies what kind of state
317 * buffer is involved, and also which brw->state.dirty.cache flag should
318 * be set when this cache item is chosen.
319 */
320 enum brw_cache_id cache_id;
321 /** 32-bit hash of the key data */
322 GLuint hash;
323 GLuint key_size; /* for variable-sized keys */
324 const void *key;
325 struct brw_winsys_buffer **reloc_bufs;
326 GLuint nr_reloc_bufs;
327
328 struct brw_winsys_buffer *bo;
329 GLuint data_size;
330
331 struct brw_cache_item *next;
332 };
333
334
335
336 struct brw_cache {
337 struct brw_context *brw;
338
339 struct brw_cache_item **items;
340 GLuint size, n_items;
341
342 GLuint key_size[BRW_MAX_CACHE]; /* for fixed-size keys */
343 GLuint aux_size[BRW_MAX_CACHE];
344 char *name[BRW_MAX_CACHE];
345
346 /* Record of the last BOs chosen for each cache_id. Used to set
347 * brw->state.dirty.cache when a new cache item is chosen.
348 */
349 struct brw_winsys_buffer *last_bo[BRW_MAX_CACHE];
350 };
351
352
353 /* Considered adding a member to this struct to document which flags
354 * an update might raise so that ordering of the state atoms can be
355 * checked or derived at runtime. Dropped the idea in favor of having
356 * a debug mode where the state is monitored for flags which are
357 * raised that have already been tested against.
358 */
359 struct brw_tracked_state {
360 struct brw_state_flags dirty;
361 void (*prepare)( struct brw_context *brw );
362 void (*emit)( struct brw_context *brw );
363 };
364
365 /* Flags for brw->state.cache.
366 */
367 #define CACHE_NEW_CC_VP (1<<BRW_CC_VP)
368 #define CACHE_NEW_CC_UNIT (1<<BRW_CC_UNIT)
369 #define CACHE_NEW_WM_PROG (1<<BRW_WM_PROG)
370 #define CACHE_NEW_SAMPLER_DEFAULT_COLOR (1<<BRW_SAMPLER_DEFAULT_COLOR)
371 #define CACHE_NEW_SAMPLER (1<<BRW_SAMPLER)
372 #define CACHE_NEW_WM_UNIT (1<<BRW_WM_UNIT)
373 #define CACHE_NEW_SF_PROG (1<<BRW_SF_PROG)
374 #define CACHE_NEW_SF_VP (1<<BRW_SF_VP)
375 #define CACHE_NEW_SF_UNIT (1<<BRW_SF_UNIT)
376 #define CACHE_NEW_VS_UNIT (1<<BRW_VS_UNIT)
377 #define CACHE_NEW_VS_PROG (1<<BRW_VS_PROG)
378 #define CACHE_NEW_GS_UNIT (1<<BRW_GS_UNIT)
379 #define CACHE_NEW_GS_PROG (1<<BRW_GS_PROG)
380 #define CACHE_NEW_CLIP_VP (1<<BRW_CLIP_VP)
381 #define CACHE_NEW_CLIP_UNIT (1<<BRW_CLIP_UNIT)
382 #define CACHE_NEW_CLIP_PROG (1<<BRW_CLIP_PROG)
383 #define CACHE_NEW_SURFACE (1<<BRW_SS_SURFACE)
384 #define CACHE_NEW_SURF_BIND (1<<BRW_SS_SURF_BIND)
385
386 struct brw_cached_batch_item {
387 struct header *header;
388 GLuint sz;
389 struct brw_cached_batch_item *next;
390 };
391
392
393
394 /* Protect against a future where VERT_ATTRIB_MAX > 32. Wouldn't life
395 * be easier if C allowed arrays of packed elements?
396 */
397 #define VS_INPUT_BITMASK_DWORDS ((PIPE_MAX_SHADER_INPUTS+31)/32)
398
399
400
401
402 struct brw_vertex_info {
403 GLuint sizes[VS_INPUT_BITMASK_DWORDS * 2]; /* sizes:2[VERT_ATTRIB_MAX] */
404 };
405
406
407 struct brw_query_object {
408 /** Doubly linked list of active query objects in the context. */
409 struct brw_query_object *prev, *next;
410
411 /** Last query BO associated with this query. */
412 struct brw_winsys_buffer *bo;
413 /** First index in bo with query data for this object. */
414 int first_index;
415 /** Last index in bo with query data for this object. */
416 int last_index;
417
418 /* Total count of pixels from previous BOs */
419 unsigned int count;
420 };
421
422
423 /**
424 * brw_context is derived from pipe_context
425 */
426 struct brw_context
427 {
428 struct pipe_context *pipe;
429 struct pipe_screen *screen;
430
431 struct brw_winsys_screen *sws;
432
433 GLuint primitive;
434
435 GLboolean emit_state_always;
436 GLboolean no_batch_wrap;
437
438 /* Active vertex program:
439 */
440 const struct gl_vertex_program *vertex_program;
441 const struct gl_fragment_program *fragment_program;
442 struct pipe_framebuffer_state fb;
443
444 struct {
445 struct brw_state_flags dirty;
446
447 /**
448 * List of buffers accumulated in brw_validate_state to receive
449 * dri_bo_check_aperture treatment before exec, so we can know if we
450 * should flush the batch and try again before emitting primitives.
451 *
452 * This can be a fixed number as we only have a limited number of
453 * objects referenced from the batchbuffer in a primitive emit,
454 * consisting of the vertex buffers, pipelined state pointers,
455 * the CURBE, the depth buffer, and a query BO.
456 */
457 struct brw_winsys_buffer *validated_bos[PIPE_MAX_SHADER_INPUTS + 16];
458 int validated_bo_count;
459 } state;
460
461 struct brw_cache cache; /** non-surface items */
462 struct brw_cache surface_cache; /* surface items */
463 struct brw_cached_batch_item *cached_batch_items;
464
465 struct {
466 struct pipe_vertex_element vertex_element[PIPE_MAX_ATTRIBS];
467 struct pipe_vertex_buffer vertex_buffer[PIPE_MAX_ATTRIBS];
468 unsigned num_vertex_element;
469 unsigned num_vertex_buffer;
470
471 struct u_upload_mgr *upload_vertex;
472 struct u_upload_mgr *upload_index;
473
474
475 /* Summary of size and varying of active arrays, so we can check
476 * for changes to this state:
477 */
478 struct brw_vertex_info info;
479 unsigned int min_index, max_index;
480 } vb;
481
482 struct {
483 /**
484 * Index buffer for this draw_prims call.
485 *
486 * Updates are signaled by BRW_NEW_INDICES.
487 */
488 const struct _mesa_index_buffer *ib;
489
490 /* Updates to these fields are signaled by BRW_NEW_INDEX_BUFFER. */
491 struct brw_winsys_buffer *bo;
492 unsigned int offset;
493 unsigned int size;
494 /* Offset to index buffer index to use in CMD_3D_PRIM so that we can
495 * avoid re-uploading the IB packet over and over if we're actually
496 * referencing the same index buffer.
497 */
498 unsigned int start_vertex_offset;
499 } ib;
500
501
502 /* BRW_NEW_URB_ALLOCATIONS:
503 */
504 struct {
505 GLuint vsize; /* vertex size plus header in urb registers */
506 GLuint csize; /* constant buffer size in urb registers */
507 GLuint sfsize; /* setup data size in urb registers */
508
509 GLboolean constrained;
510
511 GLuint nr_vs_entries;
512 GLuint nr_gs_entries;
513 GLuint nr_clip_entries;
514 GLuint nr_sf_entries;
515 GLuint nr_cs_entries;
516
517 GLuint vs_start;
518 GLuint gs_start;
519 GLuint clip_start;
520 GLuint sf_start;
521 GLuint cs_start;
522 } urb;
523
524
525 /* BRW_NEW_CURBE_OFFSETS:
526 */
527 struct {
528 GLuint wm_start; /**< pos of first wm const in CURBE buffer */
529 GLuint wm_size; /**< number of float[4] consts, multiple of 16 */
530 GLuint clip_start;
531 GLuint clip_size;
532 GLuint vs_start;
533 GLuint vs_size;
534 GLuint total_size;
535
536 struct brw_winsys_buffer *curbe_bo;
537 /** Offset within curbe_bo of space for current curbe entry */
538 GLuint curbe_offset;
539 /** Offset within curbe_bo of space for next curbe entry */
540 GLuint curbe_next_offset;
541
542 GLfloat *last_buf;
543 GLuint last_bufsz;
544 /**
545 * Whether we should create a new bo instead of reusing the old one
546 * (if we just dispatch the batch pointing at the old one.
547 */
548 GLboolean need_new_bo;
549 } curbe;
550
551 struct {
552 struct brw_vs_prog_data *prog_data;
553
554 struct brw_winsys_buffer *prog_bo;
555 struct brw_winsys_buffer *state_bo;
556
557 /** Binding table of pointers to surf_bo entries */
558 struct brw_winsys_buffer *bind_bo;
559 struct brw_winsys_buffer *surf_bo[BRW_VS_MAX_SURF];
560 GLuint nr_surfaces;
561 } vs;
562
563 struct {
564 struct brw_gs_prog_data *prog_data;
565
566 GLboolean prog_active;
567 struct brw_winsys_buffer *prog_bo;
568 struct brw_winsys_buffer *state_bo;
569 } gs;
570
571 struct {
572 struct brw_clip_prog_data *prog_data;
573
574 struct brw_winsys_buffer *prog_bo;
575 struct brw_winsys_buffer *state_bo;
576 struct brw_winsys_buffer *vp_bo;
577 } clip;
578
579
580 struct {
581 struct brw_sf_prog_data *prog_data;
582
583 struct brw_winsys_buffer *prog_bo;
584 struct brw_winsys_buffer *state_bo;
585 struct brw_winsys_buffer *vp_bo;
586 } sf;
587
588 struct {
589 struct brw_wm_prog_data *prog_data;
590 struct brw_wm_compile *compile_data;
591
592 /** Input sizes, calculated from active vertex program.
593 * One bit per fragment program input attribute.
594 */
595 //GLbitfield input_size_masks[4];
596
597 /** Array of surface default colors (texture border color) */
598 struct brw_winsys_buffer *sdc_bo[BRW_MAX_TEX_UNIT];
599
600 GLuint render_surf;
601 GLuint nr_surfaces;
602
603 GLuint max_threads;
604 struct brw_winsys_buffer *scratch_bo;
605
606 GLuint sampler_count;
607 struct brw_winsys_buffer *sampler_bo;
608
609 /** Binding table of pointers to surf_bo entries */
610 struct brw_winsys_buffer *bind_bo;
611 struct brw_winsys_buffer *surf_bo[PIPE_MAX_COLOR_BUFS];
612
613 struct brw_winsys_buffer *prog_bo;
614 struct brw_winsys_buffer *state_bo;
615 } wm;
616
617
618 struct {
619 struct brw_winsys_buffer *prog_bo;
620 struct brw_winsys_buffer *state_bo;
621 struct brw_winsys_buffer *vp_bo;
622 } cc;
623
624 struct {
625 struct brw_query_object active_head;
626 struct brw_winsys_buffer *bo;
627 int index;
628 GLboolean active;
629 } query;
630 /* Used to give every program string a unique id
631 */
632 GLuint program_id;
633 };
634
635
636 #define BRW_PACKCOLOR8888(r,g,b,a) ((r<<24) | (g<<16) | (b<<8) | a)
637
638
639
640 /*======================================================================
641 * brw_vtbl.c
642 */
643 void brwInitVtbl( struct brw_context *brw );
644
645
646 /*======================================================================
647 * brw_queryobj.c
648 */
649 void brw_init_query(struct brw_context *brw);
650 void brw_prepare_query_begin(struct brw_context *brw);
651 void brw_emit_query_begin(struct brw_context *brw);
652 void brw_emit_query_end(struct brw_context *brw);
653
654 /*======================================================================
655 * brw_state_dump.c
656 */
657 void brw_debug_batch(struct brw_context *intel);
658
659 /*======================================================================
660 * brw_tex.c
661 */
662 void brw_validate_textures( struct brw_context *brw );
663
664
665 /*======================================================================
666 * brw_pipe_shader.c
667 */
668 void brw_init_shader_funcs( struct brw_context *brw );
669
670
671 /* brw_urb.c
672 */
673 void brw_upload_urb_fence(struct brw_context *brw);
674
675 /* brw_curbe.c
676 */
677 void brw_upload_cs_urb_state(struct brw_context *brw);
678
679 /* brw_disasm.c */
680 int brw_disasm (FILE *file, struct brw_instruction *inst);
681
682 /*======================================================================
683 * Inline conversion functions. These are better-typed than the
684 * macros used previously:
685 */
686 static INLINE struct brw_context *
687 brw_context( struct pipe_context *ctx )
688 {
689 return (struct brw_context *)ctx;
690 }
691
692 static INLINE struct brw_vertex_program *
693 brw_vertex_program(struct gl_vertex_program *p)
694 {
695 return (struct brw_vertex_program *) p;
696 }
697
698 static INLINE const struct brw_vertex_program *
699 brw_vertex_program_const(const struct gl_vertex_program *p)
700 {
701 return (const struct brw_vertex_program *) p;
702 }
703
704 static INLINE struct brw_fragment_program *
705 brw_fragment_program(struct gl_fragment_program *p)
706 {
707 return (struct brw_fragment_program *) p;
708 }
709
710 static INLINE const struct brw_fragment_program *
711 brw_fragment_program_const(const struct gl_fragment_program *p)
712 {
713 return (const struct brw_fragment_program *) p;
714 }
715
716
717
718 #define DO_SETUP_BITS ((1<<(FRAG_ATTRIB_MAX)) - 1)
719
720 #endif
721