Fork for IVI: mesa fixing
[profile/ivi/uifw.git] / src / ui / effects / renderer / engine-model / FUiEffects_RendererEngineModelGeometry.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://floralicense.org/license/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                FUiEffects_RendererEngineModelGeometry.cpp
20  * @brief               This file contains implementation of Geometry class
21  *
22  */
23
24 #include <renderer/engine-model/FUiEffects_RendererEngineModelDrawable.h>
25 #include <renderer/engine-model/FUiEffects_RendererEngineModelGeometry.h>
26 #include <renderer/engine-model/FUiEffects_RendererEngineModelBuffer.h>
27
28 namespace Tizen { namespace Ui { namespace Effects { namespace _Renderer { namespace EngineModel
29 {
30
31 void
32 Geometry::AttachedToDrawable(Drawable* drawable)
33 {
34         DrawablesListIteratorType it = std::find(_drawables.begin(), _drawables.end(), drawable);
35         if (_drawables.end() != it)
36         {
37                 return;
38         }
39         _drawables.push_back(drawable);
40         return;
41 }
42
43 void
44 Geometry::RemovedFromDrawable(Drawable* drawable)
45 {
46         DrawablesListIteratorType it = std::find(_drawables.begin(), _drawables.end(), drawable);
47         if (_drawables.end() == it)
48         {
49                 return;
50         }
51
52         const DrawablesListSizeType len = _drawables.size();
53         std::swap(_drawables[len - 1], _drawables[it - _drawables.begin()]);
54         _drawables.resize(len - 1);
55         return;
56 }
57
58 void
59 Geometry::TouchDrawables(void)
60 {
61         const DrawablesListSizeType len = _drawables.size();
62         for (DrawablesListSizeType i = 0; len > i; ++i)
63         {
64                 _drawables[i]->InvalidateCache();
65         }
66         return;
67 }
68
69 void
70 Geometry::TouchDrawablesBoundBox(void)
71 {
72         const DrawablesListSizeType len = _drawables.size();
73         for (DrawablesListSizeType i = 0; len > i; ++i)
74         {
75                 _drawables[i]->InvalidateBoundBox();
76         }
77         return;
78 }
79
80 }}}}} //Tizen::Ui::Effects::_Renderer::EngineModel