[dali_1.0.2] Merge branch 'tizen'
[platform/core/uifw/dali-core.git] / dali / internal / render / common / culling-algorithms.h
1 #ifndef _DALI_INTERNAL_SCENE_GRAPH_CULLING_ALGORITHMS_H_
2 #define _DALI_INTERNAL_SCENE_GRAPH_CULLING_ALGORITHMS_H_
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 #include <dali/public-api/math/matrix.h>
21 #include <dali/public-api/math/vector2.h>
22 #include <dali/public-api/math/rect.h>
23
24 namespace Dali
25 {
26 namespace Internal
27 {
28 namespace SceneGraph
29 {
30
31 /**
32  * Determine if the given bounding box is outside clip space (given by the
33  * model view projection matrix).
34  * @param[in] modelMatrix The world matrix of the bounding box.
35  * @param[in] modelViewProjectionMatrix The clip space matrix
36  * @param[in] boundingBox The bounding box of the geometry in object space
37  * @return true if the bounding box is outside clip space
38  */
39 bool Is2dBoxOutsideClipSpace(const Matrix& modelMatrix,
40                              const Matrix& modelViewProjectionMatrix,
41                              const Rect<float>& boundingBox );
42 } // SceneGraph
43 } // Internal
44 } // Dali
45
46 #endif //_DALI_INTERNAL_SCENE_GRAPH_CULLING_ALGORITHMS_H_