OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 #ifndef CC_OUTPUT_BSP_COMPARE_RESULT_H_ | |
5 #define CC_OUTPUT_BSP_COMPARE_RESULT_H_ | |
6 | |
7 namespace cc { | |
8 | |
9 enum BspCompareResult { | |
10 BSP_FRONT, | |
11 BSP_BACK, | |
12 BSP_SPLIT, | |
13 BSP_COPLANAR_FRONT, | |
14 BSP_COPLANAR_BACK, | |
15 BSP_COPLANAR, | |
16 }; | |
17 | |
18 } // namespace cc | |
19 | |
20 #endif // CC_OUTPUT_BSP_COMPARE_RESULT_H_ | |
OLD | NEW |