nvfx: expose GLSL
[mesa/mesa-lb.git] / src / gallium / drivers / r300 / r300_emit.h
blob7db2fc6a1a10bc2ef2f60b322cd8bf8945e1c032
1 /*
2 * Copyright 2008 Corbin Simpson <MostAwesomeDude@gmail.com>
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
23 #ifndef R300_EMIT_H
24 #define R300_EMIT_H
26 #include "r300_context.h"
27 #include "radeon_code.h"
29 struct rX00_fragment_program_code;
30 struct r300_vertex_program_code;
32 void r300_emit_aos(struct r300_context* r300, unsigned offset);
34 void r300_emit_blend_state(struct r300_context* r300,
35 unsigned size, void* state);
37 void r300_emit_blend_color_state(struct r300_context* r300,
38 unsigned size, void* state);
40 void r300_emit_clip_state(struct r300_context* r300,
41 unsigned size, void* state);
43 void r300_emit_dsa_state(struct r300_context* r300,
44 unsigned size, void* state);
46 void r300_emit_fragment_program_code(struct r300_context* r300,
47 struct rX00_fragment_program_code* generic_code);
49 void r300_emit_fs_constant_buffer(struct r300_context* r300,
50 struct rc_constant_list* constants);
52 void r500_emit_fragment_program_code(struct r300_context* r300,
53 struct rX00_fragment_program_code* generic_code);
55 void r500_emit_fs_constant_buffer(struct r300_context* r300,
56 struct rc_constant_list* constants);
58 void r300_emit_fb_state(struct r300_context* r300, unsigned size, void* state);
60 void r300_emit_query_start(struct r300_context* r300);
62 void r300_emit_query_end(struct r300_context* r300);
64 void r300_emit_rs_state(struct r300_context* r300, unsigned size, void* state);
66 void r300_emit_rs_block_state(struct r300_context* r300,
67 unsigned size, void* state);
69 void r300_emit_scissor_state(struct r300_context* r300,
70 unsigned size, void* state);
72 void r300_emit_textures_state(struct r300_context *r300,
73 unsigned size, void *state);
75 void r300_emit_vertex_buffer(struct r300_context* r300);
77 void r300_emit_vertex_stream_state(struct r300_context* r300,
78 unsigned size, void* state);
80 void r300_emit_vap_output_state(struct r300_context* r300,
81 unsigned size, void* state);
83 void r300_emit_vs_constant_buffer(struct r300_context* r300,
84 struct rc_constant_list* constants);
86 void r300_emit_vs_state(struct r300_context* r300, unsigned size, void* state);
88 void r300_emit_viewport_state(struct r300_context* r300,
89 unsigned size, void* state);
91 void r300_emit_ztop_state(struct r300_context* r300,
92 unsigned size, void* state);
94 void r300_emit_pvs_flush(struct r300_context* r300, unsigned size, void* state);
96 void r300_emit_texture_cache_inval(struct r300_context* r300, unsigned size, void* state);
98 unsigned r300_get_num_dirty_dwords(struct r300_context *r300);
100 /* Emit all dirty state. */
101 void r300_emit_dirty_state(struct r300_context* r300);
103 void r300_emit_buffer_validate(struct r300_context *r300,
104 boolean do_validate_vertex_buffers,
105 struct pipe_buffer *index_buffer);
107 #endif /* R300_EMIT_H */