From: Kimmo Hoikka Date: Fri, 13 May 2016 13:25:36 +0000 (+0100) Subject: Removed incorrectly included vector-wrapper from property X-Git-Tag: dali_1.1.35~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F18%2F69518%2F3;p=platform%2Fcore%2Fuifw%2Fdali-core.git Removed incorrectly included vector-wrapper from property Change-Id: Ieefc93ca94ed08403e4133569bb497296768beb3 --- diff --git a/dali/internal/render/data-providers/render-data-provider.h b/dali/internal/render/data-providers/render-data-provider.h index d73f70c..38b2815 100644 --- a/dali/internal/render/data-providers/render-data-provider.h +++ b/dali/internal/render/data-providers/render-data-provider.h @@ -2,7 +2,7 @@ #define __DALI_INTERNAL_SCENE_GRAPH_RENDER_DATA_PROVIDER_H__ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,6 +18,7 @@ * */ +#include #include #include #include diff --git a/dali/internal/render/renderers/render-property-buffer.h b/dali/internal/render/renderers/render-property-buffer.h index 86c74ff..94dee12 100644 --- a/dali/internal/render/renderers/render-property-buffer.h +++ b/dali/internal/render/renderers/render-property-buffer.h @@ -2,7 +2,7 @@ #define DALI_INTERNAL_RENDER_PROPERTY_BUFFER_H /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,9 +16,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include +#include #include #include +#include #include #include @@ -158,18 +159,17 @@ public: private: OwnerPointer< PropertyBuffer::Format > mFormat; ///< Format of the buffer OwnerPointer< Dali::Vector< char > > mData; ///< Data - OwnerPointer mGpuBuffer; ///< Pointer to the GpuBuffer associated with this RenderPropertyBuffer + OwnerPointer< GpuBuffer > mGpuBuffer; ///< Pointer to the GpuBuffer associated with this RenderPropertyBuffer - size_t mSize; ///< Number of Elements in the buffer + size_t mSize; ///< Number of Elements in the buffer bool mDataChanged; ///< Flag to know if data has changed in a frame }; } // namespace Render - - } // namespace Internal + } // namespace Dali diff --git a/dali/public-api/events/touch-point.h b/dali/public-api/events/touch-point.h index 221fc95..83b9f72 100644 --- a/dali/public-api/events/touch-point.h +++ b/dali/public-api/events/touch-point.h @@ -2,7 +2,7 @@ #define __DALI_TOUCH_POINT_H__ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ */ // INTERNAL INCLUDES +#include #include #include diff --git a/dali/public-api/object/property.h b/dali/public-api/object/property.h index 37cdaf9..03c40e0 100644 --- a/dali/public-api/object/property.h +++ b/dali/public-api/object/property.h @@ -2,7 +2,7 @@ #define __DALI_PROPERTY_H__ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,7 +23,6 @@ #include // INTERNAL INCLUDES -#include #include #include