mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 04:00:10 +01:00
i965: replace Elements() with ARRAY_SIZE()
Acked-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
parent
b565771003
commit
49a7f8c919
5 changed files with 8 additions and 8 deletions
|
|
@ -249,21 +249,21 @@ validate_reg(const struct brw_context *brw, brw_inst *inst, struct brw_reg reg)
|
|||
reg.file == BRW_ARF_NULL)
|
||||
return;
|
||||
|
||||
assert(reg.hstride >= 0 && reg.hstride < Elements(hstride_for_reg));
|
||||
assert(reg.hstride >= 0 && reg.hstride < ARRAY_SIZE(hstride_for_reg));
|
||||
hstride = hstride_for_reg[reg.hstride];
|
||||
|
||||
if (reg.vstride == 0xf) {
|
||||
vstride = -1;
|
||||
} else {
|
||||
assert(reg.vstride >= 0 && reg.vstride < Elements(vstride_for_reg));
|
||||
assert(reg.vstride >= 0 && reg.vstride < ARRAY_SIZE(vstride_for_reg));
|
||||
vstride = vstride_for_reg[reg.vstride];
|
||||
}
|
||||
|
||||
assert(reg.width >= 0 && reg.width < Elements(width_for_reg));
|
||||
assert(reg.width >= 0 && reg.width < ARRAY_SIZE(width_for_reg));
|
||||
width = width_for_reg[reg.width];
|
||||
|
||||
assert(brw_inst_exec_size(brw, inst) >= 0 &&
|
||||
brw_inst_exec_size(brw, inst) < Elements(execsize_for_reg));
|
||||
brw_inst_exec_size(brw, inst) < ARRAY_SIZE(execsize_for_reg));
|
||||
execsize = execsize_for_reg[brw_inst_exec_size(brw, inst)];
|
||||
|
||||
/* Restrictions from 3.3.10: Register Region Restrictions. */
|
||||
|
|
|
|||
|
|
@ -2852,7 +2852,7 @@ fs_visitor::remove_duplicate_mrf_writes()
|
|||
|
||||
/* Clear out any MRF move records whose sources got overwritten. */
|
||||
if (inst->dst.file == GRF) {
|
||||
for (unsigned int i = 0; i < Elements(last_mrf_move); i++) {
|
||||
for (unsigned int i = 0; i < ARRAY_SIZE(last_mrf_move); i++) {
|
||||
if (last_mrf_move[i] &&
|
||||
last_mrf_move[i]->src[0].reg == inst->dst.reg) {
|
||||
last_mrf_move[i] = NULL;
|
||||
|
|
|
|||
|
|
@ -1305,7 +1305,7 @@ void
|
|||
vec4_visitor::visit(ir_expression *ir)
|
||||
{
|
||||
unsigned int operand;
|
||||
src_reg op[Elements(ir->operands)];
|
||||
src_reg op[ARRAY_SIZE(ir->operands)];
|
||||
vec4_instruction *inst;
|
||||
|
||||
if (ir->operation == ir_binop_add) {
|
||||
|
|
|
|||
|
|
@ -219,7 +219,7 @@ brw_delete_transform_feedback(struct gl_context *ctx,
|
|||
struct brw_transform_feedback_object *brw_obj =
|
||||
(struct brw_transform_feedback_object *) obj;
|
||||
|
||||
for (unsigned i = 0; i < Elements(obj->Buffers); i++) {
|
||||
for (unsigned i = 0; i < ARRAY_SIZE(obj->Buffers); i++) {
|
||||
_mesa_reference_buffer_object(ctx, &obj->Buffers[i], NULL);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -729,7 +729,7 @@ intel_validate_framebuffer(struct gl_context *ctx, struct gl_framebuffer *fb)
|
|||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < Elements(fb->Attachment); i++) {
|
||||
for (i = 0; i < ARRAY_SIZE(fb->Attachment); i++) {
|
||||
struct gl_renderbuffer *rb;
|
||||
struct intel_renderbuffer *irb;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue