X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=blobdiff_plain;f=src%2Fgallium%2Fdrivers%2Fr300%2Fr300_emit.h;h=7db2fc6a1a10bc2ef2f60b322cd8bf8945e1c032;hp=02ac5bebbd9f401da26529070951d76541893ca7;hb=2689dd304c6d644b04c941e6da63e466be5de0d6;hpb=ab9d1011f5549502a4b960c2067cde69856a2719 diff --git a/src/gallium/drivers/r300/r300_emit.h b/src/gallium/drivers/r300/r300_emit.h index 02ac5bebbd9..7db2fc6a1a1 100644 --- a/src/gallium/drivers/r300/r300_emit.h +++ b/src/gallium/drivers/r300/r300_emit.h @@ -23,67 +23,85 @@ #ifndef R300_EMIT_H #define R300_EMIT_H +#include "r300_context.h" +#include "radeon_code.h" + struct rX00_fragment_program_code; struct r300_vertex_program_code; +void r300_emit_aos(struct r300_context* r300, unsigned offset); + void r300_emit_blend_state(struct r300_context* r300, - struct r300_blend_state* blend); + unsigned size, void* state); void r300_emit_blend_color_state(struct r300_context* r300, - struct r300_blend_color_state* bc); + unsigned size, void* state); void r300_emit_clip_state(struct r300_context* r300, - struct pipe_clip_state* clip); + unsigned size, void* state); void r300_emit_dsa_state(struct r300_context* r300, - struct r300_dsa_state* dsa); + unsigned size, void* state); void r300_emit_fragment_program_code(struct r300_context* r300, - struct rX00_fragment_program_code* generic_code, - struct r300_constant_buffer* externals); + struct rX00_fragment_program_code* generic_code); + +void r300_emit_fs_constant_buffer(struct r300_context* r300, + struct rc_constant_list* constants); void r500_emit_fragment_program_code(struct r300_context* r300, - struct rX00_fragment_program_code* generic_code, - struct r300_constant_buffer* externals); + struct rX00_fragment_program_code* generic_code); -void r300_emit_fb_state(struct r300_context* r300, - struct pipe_framebuffer_state* fb); +void r500_emit_fs_constant_buffer(struct r300_context* r300, + struct rc_constant_list* constants); -void r300_emit_query_begin(struct r300_context* r300, - struct r300_query* query); +void r300_emit_fb_state(struct r300_context* r300, unsigned size, void* state); + +void r300_emit_query_start(struct r300_context* r300); void r300_emit_query_end(struct r300_context* r300); -void r300_emit_rs_state(struct r300_context* r300, struct r300_rs_state* rs); +void r300_emit_rs_state(struct r300_context* r300, unsigned size, void* state); void r300_emit_rs_block_state(struct r300_context* r300, - struct r300_rs_block* rs); + unsigned size, void* state); void r300_emit_scissor_state(struct r300_context* r300, - struct r300_scissor_state* scissor); + unsigned size, void* state); -void r300_emit_texture(struct r300_context* r300, - struct r300_sampler_state* sampler, - struct r300_texture* tex, - unsigned offset); +void r300_emit_textures_state(struct r300_context *r300, + unsigned size, void *state); void r300_emit_vertex_buffer(struct r300_context* r300); -void r300_emit_vertex_format_state(struct r300_context* r300); +void r300_emit_vertex_stream_state(struct r300_context* r300, + unsigned size, void* state); + +void r300_emit_vap_output_state(struct r300_context* r300, + unsigned size, void* state); -void r300_emit_vertex_program_code(struct r300_context* r300, - struct r300_vertex_program_code* code, - struct r300_constant_buffer* constants); +void r300_emit_vs_constant_buffer(struct r300_context* r300, + struct rc_constant_list* constants); -void r300_emit_vertex_shader(struct r300_context* r300, - struct r300_vertex_shader* vs); +void r300_emit_vs_state(struct r300_context* r300, unsigned size, void* state); void r300_emit_viewport_state(struct r300_context* r300, - struct r300_viewport_state* viewport); + unsigned size, void* state); -void r300_flush_textures(struct r300_context* r300); +void r300_emit_ztop_state(struct r300_context* r300, + unsigned size, void* state); + +void r300_emit_pvs_flush(struct r300_context* r300, unsigned size, void* state); + +void r300_emit_texture_cache_inval(struct r300_context* r300, unsigned size, void* state); + +unsigned r300_get_num_dirty_dwords(struct r300_context *r300); /* Emit all dirty state. */ void r300_emit_dirty_state(struct r300_context* r300); +void r300_emit_buffer_validate(struct r300_context *r300, + boolean do_validate_vertex_buffers, + struct pipe_buffer *index_buffer); + #endif /* R300_EMIT_H */