mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 08:58:02 +02:00
intel: Fix a warning in the release build.
This was silly -- checking that we didn't overflow the array by dividing the array size by 2 and then multiplying it back up by 2. Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
1433936fe5
commit
b681a89588
1 changed files with 1 additions and 2 deletions
|
|
@ -1056,7 +1056,6 @@ intel_query_dri2_buffers(struct intel_context *intel,
|
|||
struct gl_framebuffer *fb = drawable->driverPrivate;
|
||||
int i = 0;
|
||||
unsigned attachments[8];
|
||||
const int max_attachments = ARRAY_SIZE(attachments) / 2;
|
||||
|
||||
struct intel_renderbuffer *front_rb;
|
||||
struct intel_renderbuffer *back_rb;
|
||||
|
|
@ -1077,7 +1076,7 @@ intel_query_dri2_buffers(struct intel_context *intel,
|
|||
attachments[i++] = intel_bits_per_pixel(back_rb);
|
||||
}
|
||||
|
||||
assert(i <= 2 * max_attachments);
|
||||
assert(i <= ARRAY_SIZE(attachments));
|
||||
|
||||
*buffers = screen->dri2.loader->getBuffersWithFormat(drawable,
|
||||
&drawable->w,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue