From 896b550984cf3ffd0fa67051d5b9cf0239634894 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Mon, 24 Mar 2014 18:42:39 +0000 Subject: rendercopy/gen8: Remove a hole in struct gen8_blend_state Using uint64_t in that second member makes it aligned to 64bits, while the first member is only 32bits. We then had a 32bits hole in there! Found-by: Chris Wilson Cc: Ben Widawsky Cc: Rafael Barbalho Tested-by: Rafael Barbalho Signed-off-by: Damien Lespiau --- lib/gen8_render.h | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'lib/gen8_render.h') diff --git a/lib/gen8_render.h b/lib/gen8_render.h index ca53d646..fffc1007 100644 --- a/lib/gen8_render.h +++ b/lib/gen8_render.h @@ -273,25 +273,25 @@ struct gen8_blend_state { } bs0; struct { - uint64_t write_disable_blue:1; - uint64_t write_disable_green:1; - uint64_t write_disable_red:1; - uint64_t write_disable_alpha:1; - uint64_t pad1:1; - uint64_t alpha_blend_func:3; - uint64_t dest_alpha_blend_factor:5; - uint64_t source_alpha_blend_factor:5; - uint64_t color_blend_func:3; - uint64_t dest_blend_factor:5; - uint64_t source_blend_factor:5; - uint64_t color_buffer_blend:1; - uint64_t post_blend_color_clamp:1; - uint64_t pre_blend_color_clamp:1; - uint64_t color_clamp_range:2; - uint64_t pre_blend_source_only_clamp:1; - uint64_t pad0:22; - uint64_t logic_op_func:4; - uint64_t logic_op_enable:1; + uint32_t write_disable_blue:1; + uint32_t write_disable_green:1; + uint32_t write_disable_red:1; + uint32_t write_disable_alpha:1; + uint32_t pad1:1; + uint32_t alpha_blend_func:3; + uint32_t dest_alpha_blend_factor:5; + uint32_t source_alpha_blend_factor:5; + uint32_t color_blend_func:3; + uint32_t dest_blend_factor:5; + uint32_t source_blend_factor:5; + uint32_t color_buffer_blend:1; + uint32_t post_blend_color_clamp:1; + uint32_t pre_blend_color_clamp:1; + uint32_t color_clamp_range:2; + uint32_t pre_blend_source_only_clamp:1; + uint32_t pad0:22; + uint32_t logic_op_func:4; + uint32_t logic_op_enable:1; } bs[16]; }; -- cgit v1.2.3