Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/gallium/drivers/r300/r300_emit.h
4570 views
1
/*
2
* Copyright 2008 Corbin Simpson <[email protected]>
3
*
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:
10
*
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.
14
*
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. */
22
23
#ifndef R300_EMIT_H
24
#define R300_EMIT_H
25
26
#include "r300_context.h"
27
28
struct rX00_fragment_program_code;
29
struct r300_vertex_program_code;
30
31
uint32_t pack_float24(float f);
32
33
void r300_emit_vertex_arrays(struct r300_context* r300, int offset,
34
boolean indexed, int instance_id);
35
36
void r300_emit_blend_state(struct r300_context* r300,
37
unsigned size, void* state);
38
39
void r300_emit_blend_color_state(struct r300_context* r300,
40
unsigned size, void* state);
41
42
void r300_emit_clip_state(struct r300_context* r300,
43
unsigned size, void* state);
44
45
void r300_emit_dsa_state(struct r300_context* r300,
46
unsigned size, void* state);
47
48
void r300_emit_hyperz_state(struct r300_context *r300,
49
unsigned size, void *state);
50
51
void r300_emit_hyperz_end(struct r300_context *r300);
52
53
void r300_emit_fs(struct r300_context* r300, unsigned size, void *state);
54
55
void r300_emit_fs_constants(struct r300_context* r300, unsigned size, void *state);
56
57
void r300_emit_fs_rc_constant_state(struct r300_context* r300, unsigned size, void *state);
58
59
void r500_emit_fs(struct r300_context* r300, unsigned size, void *state);
60
61
void r500_emit_fs_constants(struct r300_context* r300, unsigned size, void *state);
62
63
void r500_emit_fs_rc_constant_state(struct r300_context* r300, unsigned size, void *state);
64
65
void r300_emit_fb_state(struct r300_context* r300, unsigned size, void* state);
66
67
void r300_emit_fb_state_pipelined(struct r300_context *r300,
68
unsigned size, void *state);
69
70
void r300_emit_gpu_flush(struct r300_context *r300, unsigned size, void *state);
71
72
void r300_emit_aa_state(struct r300_context *r300, unsigned size, void *state);
73
74
void r300_emit_query_start(struct r300_context *r300, unsigned size, void *state);
75
76
void r300_emit_query_end(struct r300_context* r300);
77
78
void r300_emit_rs_state(struct r300_context* r300, unsigned size, void* state);
79
80
void r300_emit_rs_block_state(struct r300_context* r300,
81
unsigned size, void* state);
82
83
void r300_emit_sample_mask(struct r300_context *r300,
84
unsigned size, void *state);
85
86
void r300_emit_scissor_state(struct r300_context* r300,
87
unsigned size, void* state);
88
89
void r300_emit_textures_state(struct r300_context *r300,
90
unsigned size, void *state);
91
92
void r300_emit_vertex_arrays_swtcl(struct r300_context *r300, boolean indexed);
93
94
void r300_emit_vap_invariant_state(struct r300_context *r300,
95
unsigned size, void *state);
96
97
void r300_emit_vertex_stream_state(struct r300_context* r300,
98
unsigned size, void* state);
99
100
void r300_emit_vs_constants(struct r300_context* r300,
101
unsigned size, void *state);
102
103
void r300_emit_vs_state(struct r300_context* r300, unsigned size, void* state);
104
105
void r300_emit_viewport_state(struct r300_context* r300,
106
unsigned size, void* state);
107
108
void r300_emit_ztop_state(struct r300_context* r300,
109
unsigned size, void* state);
110
111
void r300_emit_pvs_flush(struct r300_context* r300, unsigned size, void* state);
112
113
void r300_emit_texture_cache_inval(struct r300_context* r300, unsigned size, void* state);
114
115
void r300_emit_invariant_state(struct r300_context *r300,
116
unsigned size, void *state);
117
118
void r300_emit_hiz_clear(struct r300_context *r300, unsigned size, void *state);
119
void r300_emit_zmask_clear(struct r300_context *r300, unsigned size, void *state);
120
void r300_emit_cmask_clear(struct r300_context *r300, unsigned size, void *state);
121
122
unsigned r300_get_num_dirty_dwords(struct r300_context *r300);
123
unsigned r300_get_num_cs_end_dwords(struct r300_context *r300);
124
125
/* Emit all dirty state. */
126
void r300_emit_dirty_state(struct r300_context* r300);
127
128
boolean r300_emit_buffer_validate(struct r300_context *r300,
129
boolean do_validate_vertex_buffers,
130
struct pipe_resource *index_buffer);
131
132
#endif /* R300_EMIT_H */
133
134