freedreno: Rename emit_const_bo() to emit_const_ptrs().

I keep thinking it's the "upload from inside a BO" path when it's not.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5990>
This commit is contained in:
Eric Anholt 2020-07-09 16:23:49 -07:00 committed by Marge Bot
parent 51acfe2230
commit 154299934d
5 changed files with 13 additions and 13 deletions

View File

@ -93,7 +93,7 @@ fd3_emit_const(struct fd_ringbuffer *ring, gl_shader_stage type,
}
static void
fd3_emit_const_bo(struct fd_ringbuffer *ring, gl_shader_stage type,
fd3_emit_const_ptrs(struct fd_ringbuffer *ring, gl_shader_stage type,
uint32_t regid, uint32_t num, struct pipe_resource **prscs, uint32_t *offsets)
{
uint32_t anum = align(num, 4);
@ -140,13 +140,13 @@ emit_const(struct fd_ringbuffer *ring,
}
static void
emit_const_bo(struct fd_ringbuffer *ring,
emit_const_ptrs(struct fd_ringbuffer *ring,
const struct ir3_shader_variant *v, uint32_t dst_offset,
uint32_t num, struct pipe_resource **prscs, uint32_t *offsets)
{
/* TODO inline this */
assert(dst_offset + num <= v->constlen * 4);
fd3_emit_const_bo(ring, v->type, dst_offset, num, prscs, offsets);
fd3_emit_const_ptrs(ring, v->type, dst_offset, num, prscs, offsets);
}
#define VERT_TEX_OFF 0

View File

@ -88,7 +88,7 @@ fd4_emit_const(struct fd_ringbuffer *ring, gl_shader_stage type,
}
static void
fd4_emit_const_bo(struct fd_ringbuffer *ring, gl_shader_stage type,
fd4_emit_const_ptrs(struct fd_ringbuffer *ring, gl_shader_stage type,
uint32_t regid, uint32_t num, struct pipe_resource **prscs, uint32_t *offsets)
{
uint32_t anum = align(num, 4);
@ -135,13 +135,13 @@ emit_const(struct fd_ringbuffer *ring,
}
static void
emit_const_bo(struct fd_ringbuffer *ring,
emit_const_ptrs(struct fd_ringbuffer *ring,
const struct ir3_shader_variant *v, uint32_t dst_offset,
uint32_t num, struct pipe_resource **prscs, uint32_t *offsets)
{
/* TODO inline this */
assert(dst_offset + num <= v->constlen * 4);
fd4_emit_const_bo(ring, v->type, dst_offset, num, prscs, offsets);
fd4_emit_const_ptrs(ring, v->type, dst_offset, num, prscs, offsets);
}
static void

View File

@ -92,7 +92,7 @@ fd5_emit_const(struct fd_ringbuffer *ring, gl_shader_stage type,
}
static void
fd5_emit_const_bo(struct fd_ringbuffer *ring, gl_shader_stage type,
fd5_emit_const_ptrs(struct fd_ringbuffer *ring, gl_shader_stage type,
uint32_t regid, uint32_t num, struct pipe_resource **prscs, uint32_t *offsets)
{
uint32_t anum = align(num, 2);
@ -143,13 +143,13 @@ emit_const(struct fd_ringbuffer *ring,
}
static void
emit_const_bo(struct fd_ringbuffer *ring,
emit_const_ptrs(struct fd_ringbuffer *ring,
const struct ir3_shader_variant *v, uint32_t dst_offset,
uint32_t num, struct pipe_resource **prscs, uint32_t *offsets)
{
/* TODO inline this */
assert(dst_offset + num <= v->constlen * 4);
fd5_emit_const_bo(ring, v->type, dst_offset, num, prscs, offsets);
fd5_emit_const_ptrs(ring, v->type, dst_offset, num, prscs, offsets);
}
void

View File

@ -123,7 +123,7 @@ emit_const(struct fd_ringbuffer *ring,
}
static void
emit_const_bo(struct fd_ringbuffer *ring,
emit_const_ptrs(struct fd_ringbuffer *ring,
const struct ir3_shader_variant *v, uint32_t dst_offset,
uint32_t num, struct pipe_resource **prscs, uint32_t *offsets)
{

View File

@ -44,7 +44,7 @@ static void emit_const(struct fd_ringbuffer *ring,
uint32_t offset, uint32_t size,
const void *user_buffer, struct pipe_resource *buffer);
static void emit_const_bo(struct fd_ringbuffer *ring,
static void emit_const_ptrs(struct fd_ringbuffer *ring,
const struct ir3_shader_variant *v, uint32_t dst_offset,
uint32_t num, struct pipe_resource **prscs, uint32_t *offsets);
@ -176,7 +176,7 @@ ir3_emit_ubos(struct fd_context *ctx, const struct ir3_shader_variant *v,
assert(offset * 4 + params <= v->constlen * 4);
emit_const_bo(ring, v, offset * 4, params, prscs, offsets);
emit_const_ptrs(ring, v, offset * 4, params, prscs, offsets);
}
}
@ -330,7 +330,7 @@ emit_tfbos(struct fd_context *ctx, const struct ir3_shader_variant *v,
assert(offset * 4 + params <= v->constlen * 4);
emit_const_bo(ring, v, offset * 4, params, prscs, offsets);
emit_const_ptrs(ring, v, offset * 4, params, prscs, offsets);
}
}