mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
radv/amdgpu: remove now unused radeon_emit helpers
Keep radeon_emit_unchecked() for now because it's special. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37956>
This commit is contained in:
parent
0fb21e2299
commit
a4a834859e
1 changed files with 0 additions and 15 deletions
|
|
@ -101,21 +101,6 @@ struct radv_winsys_sem_info {
|
|||
struct radv_winsys_sem_counts signal;
|
||||
};
|
||||
|
||||
static void
|
||||
radeon_emit(struct ac_cmdbuf *cs, uint32_t value)
|
||||
{
|
||||
assert(cs->cdw < cs->reserved_dw);
|
||||
cs->buf[cs->cdw++] = value;
|
||||
}
|
||||
|
||||
static void
|
||||
radeon_emit_array(struct ac_cmdbuf *cs, const uint32_t *values, unsigned count)
|
||||
{
|
||||
assert(cs->cdw + count <= cs->reserved_dw);
|
||||
memcpy(cs->buf + cs->cdw, values, count * 4);
|
||||
cs->cdw += count;
|
||||
}
|
||||
|
||||
static void
|
||||
radeon_emit_unchecked(struct ac_cmdbuf *cs, uint32_t value)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue