From 91a73f345be73a1cbbaa15cfaa304f00218968fb Mon Sep 17 00:00:00 2001 From: giuros01 Date: Fri, 21 Sep 2018 12:23:44 +0100 Subject: COMPMID-1593: (Nightly) CLPad failing Change-Id: I5529bf35dadd3de8a5ba4f2e6e0f1c96b4df19f4 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/149595 Tested-by: bsgcomp Reviewed-by: Georgios Pinitas --- arm_compute/core/PixelValue.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'arm_compute/core') diff --git a/arm_compute/core/PixelValue.h b/arm_compute/core/PixelValue.h index 31705bd740..530cc166a2 100644 --- a/arm_compute/core/PixelValue.h +++ b/arm_compute/core/PixelValue.h @@ -36,7 +36,7 @@ class PixelValue public: /** Default constructor: value initialized to 0 */ PixelValue() - : value{ { uint64_t(0) } } + : value{ uint64_t(0) } { } /** Initialize the union with a U8 pixel value @@ -135,6 +135,8 @@ public: */ union { + uint64_t u64; /**< Single channel U64 */ + int64_t s64; /**< Single channel S64 */ uint8_t rgb[3]; /**< 3 channels: RGB888 */ uint8_t yuv[3]; /**< 3 channels: Any YUV format */ uint8_t rgbx[4]; /**< 4 channels: RGBX8888 */ @@ -147,8 +149,6 @@ public: int16_t s16; /**< Single channel S16 */ uint32_t u32; /**< Single channel U32 */ int32_t s32; /**< Single channel S32 */ - uint64_t u64; /**< Single channel U64 */ - int64_t s64; /**< Single channel S64 */ } value; /** Interpret the pixel value as a U8 * -- cgit v1.2.1